#include "util/file/string_file.h"
#include <stdint.h>
#include <string.h>
#include <algorithm>
#include <limits>
#include "gtest/gtest.h"
#include "util/misc/implicit_cast.h"
namespace crashpad {
namespace test {
namespace {
TEST(StringFile, EmptyFile) { … }
TEST(StringFile, OneByteFile) { … }
TEST(StringFile, SetString) { … }
TEST(StringFile, ReadExactly) { … }
TEST(StringFile, Reset) { … }
TEST(StringFile, WriteInvalid) { … }
TEST(StringFile, WriteIoVec) { … }
TEST(StringFile, WriteIoVecInvalid) { … }
TEST(StringFile, Seek) { … }
TEST(StringFile, SeekSparse) { … }
TEST(StringFile, SeekInvalid) { … }
TEST(StringFile, SeekSet) { … }
}
}
}