Searched refs:SourceInts (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | BinaryStreamTest.cpp | 786 std::vector<int> SourceInts = {1, 2, 3, 4, 5}; in TEST_F() local 787 ArrayRef<uint8_t> SourceBytes(reinterpret_cast<uint8_t *>(&SourceInts[0]), in TEST_F() 788 SourceInts.size() * sizeof(int)); in TEST_F() 799 ASSERT_THAT_ERROR(Reader.readArray(Ints, SourceInts.size()), Succeeded()); in TEST_F() 803 ASSERT_THAT_ERROR(ReaderBacker.readArray(Ints2, SourceInts.size()), in TEST_F() 806 EXPECT_EQ(makeArrayRef(SourceInts), Ints2); in TEST_F()
|