Files
c3c/test/unit/stdlib/io/dstringstream.c3
2023-06-27 20:41:17 +02:00

18 lines
318 B
C

module std::io @test;
fn void! test_writing()
{
DString foo;
foo.init();
Stream s = foo.as_stream();
s.write("hello")!!;
s.write_byte('-')!!;
s.write("what?")!!;
ByteReader r;
String test_str = "2134";
r.init(test_str);
s.read_from(r.as_stream())!;
String o = foo.str();
assert(o == "hello-what?2134");
}