| 8 | #include "tokenizer.h" |
| 9 | |
| 10 | static inline void CheckIfNullTerminated(const TStringBuf str) { |
| 11 | UNIT_ASSERT_VALUES_EQUAL('\0', *(str.data() + str.size())); |
| 12 | } |
| 13 | |
| 14 | Y_UNIT_TEST_SUITE(TStreamTokenizerTests) { |
| 15 | Y_UNIT_TEST(EmptyStreamTest) { |
no test coverage detected