| 94 | |
| 95 | Y_UNIT_TEST_SUITE(TInputTest) { |
| 96 | Y_UNIT_TEST(BigTransfer) { |
| 97 | ui64 size = 1024ull * 1024ull * 1024ull * 5; |
| 98 | TNoInput input(size); |
| 99 | TNoOutput output; |
| 100 | |
| 101 | ui64 transferred = TransferData(&input, &output); |
| 102 | |
| 103 | UNIT_ASSERT_VALUES_EQUAL(transferred, size); |
| 104 | } |
| 105 | |
| 106 | Y_UNIT_TEST(TestReadTo) { |
| 107 | /* This one tests default implementation of ReadTo. */ |
nothing calls this directly
no test coverage detected