summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-08-12 14:13:22 +0200
committerljfa-ag <ljfa-ag@web.de>2015-08-12 14:13:22 +0200
commit5166cfb9b70f21b16193315cbdee69a507371a13 (patch)
tree2e6d7c00501563764ac277cacf11be47daa474dc /test
parent2f0bf929fcecc47c5a5d2b3f151d8f187fb5d7f9 (diff)
downloadProject-Tick-5166cfb9b70f21b16193315cbdee69a507371a13.tar.gz
Project-Tick-5166cfb9b70f21b16193315cbdee69a507371a13.zip
Implement basic stream_writer methods
Diffstat (limited to 'test')
-rw-r--r--test/write_test.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/write_test.cpp b/test/write_test.cpp
index 5c5cab055b..3f9327b978 100644
--- a/test/write_test.cpp
+++ b/test/write_test.cpp
@@ -51,6 +51,7 @@ void test_stream_writer_big()
0x00, 0x06, //string length in Big Endian
'f', 'o', 'o', 'b', 'a', 'r'
};
+ std::string s = os.str();
ASSERT(os.str() == expected);
std::clog << "test_stream_writer_big passed" << std::endl;
}