blob: d6b61e10ced36d3c7e11c7945a28b67f00350c6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "pipe.h"
#include <library/cpp/testing/unittest/registar.h>
Y_UNIT_TEST_SUITE(TPipeTest) {
Y_UNIT_TEST(TestPipe) {
TPipe r;
TPipe w;
TPipe::Pipe(r, w);
char c = 'a';
UNIT_ASSERT(1 == w.Write(&c, 1));
UNIT_ASSERT(1 == r.Read(&c, 1));
UNIT_ASSERT_VALUES_EQUAL('a', c);
}
} // Y_UNIT_TEST_SUITE(TPipeTest)
|