summaryrefslogtreecommitdiffstats
path: root/tests/ByteBuffer/ByteBufferTest.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-06-16 17:34:17 +0200
committerMattes D <github@xoft.cz>2016-06-18 13:12:10 +0200
commitea47247dc72a7ee44f97628e45c5b6867f46bedf (patch)
treead1dcecc7cb1a97f4b350a0c0d2d9a64e10f879e /tests/ByteBuffer/ByteBufferTest.cpp
parentSelfTests: Removed the unneeded cSelfTests class. (diff)
downloadcuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar.gz
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar.bz2
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar.lz
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar.xz
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.tar.zst
cuberite-ea47247dc72a7ee44f97628e45c5b6867f46bedf.zip
Diffstat (limited to '')
-rw-r--r--tests/ByteBuffer/ByteBufferTest.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ByteBuffer/ByteBufferTest.cpp b/tests/ByteBuffer/ByteBufferTest.cpp
index 98a802554..ddfe9e1d2 100644
--- a/tests/ByteBuffer/ByteBufferTest.cpp
+++ b/tests/ByteBuffer/ByteBufferTest.cpp
@@ -68,9 +68,17 @@ static void TestWrap(void)
int main(int argc, char * argv[])
{
+ LOGD("Test started");
+
+ LOGD("Testing reads");
TestRead();
+
+ LOGD("Testing writes");
TestWrite();
+
+ LOGD("Testing wraps");
TestWrap();
+
LOG("ByteBuffer test finished.");
}