diff options
| author | ljfa-ag <ljfa-ag@web.de> | 2015-07-15 18:42:58 +0200 |
|---|---|---|
| committer | ljfa-ag <ljfa-ag@web.de> | 2015-07-15 18:42:58 +0200 |
| commit | 593c3f241f3f6775226341a4343a34dc00358ac8 (patch) | |
| tree | cf707430ad75c4ac503b738fbb75efb5cdfe8c96 /test/nbttest.cpp | |
| parent | 1434698cc01d9e5b2c73ef7b9fc83de034a96241 (diff) | |
| download | Project-Tick-593c3f241f3f6775226341a4343a34dc00358ac8.tar.gz Project-Tick-593c3f241f3f6775226341a4343a34dc00358ac8.zip | |
Declare tag_array methods
Diffstat (limited to 'test/nbttest.cpp')
| -rw-r--r-- | test/nbttest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nbttest.cpp b/test/nbttest.cpp index 516202c57c..7193fe0141 100644 --- a/test/nbttest.cpp +++ b/test/nbttest.cpp @@ -30,11 +30,11 @@ void test_get_type() ASSERT(tag_long().get_type() == tag_type::Long); ASSERT(tag_float().get_type() == tag_type::Float); ASSERT(tag_double().get_type() == tag_type::Double); - //ASSERT(tag_byte_array().get_type() == tag_type::Byte_Array); + ASSERT(tag_byte_array().get_type() == tag_type::Byte_Array); ASSERT(tag_string().get_type() == tag_type::String); ASSERT(tag_list().get_type() == tag_type::List); ASSERT(tag_compound().get_type() == tag_type::Compound); - //ASSERT(tag_int_array().get_type() == tag_type::Int_Array); + ASSERT(tag_int_array().get_type() == tag_type::Int_Array); std::clog << "test_get_type passed" << std::endl; } |
