Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'base/base_tests')
-rw-r--r--base/base_tests/base_tests.pro1
-rw-r--r--base/base_tests/newtype_test.cpp99
2 files changed, 100 insertions, 0 deletions
diff --git a/base/base_tests/base_tests.pro b/base/base_tests/base_tests.pro
index 7624cc052f..7fa3e5a31b 100644
--- a/base/base_tests/base_tests.pro
+++ b/base/base_tests/base_tests.pro
@@ -23,6 +23,7 @@ SOURCES += \
const_helper.cpp \
containers_test.cpp \
logging_test.cpp \
+ newtype_test.cpp \
math_test.cpp \
matrix_test.cpp \
mem_trie_test.cpp \
diff --git a/base/base_tests/newtype_test.cpp b/base/base_tests/newtype_test.cpp
new file mode 100644
index 0000000000..0a5741eb11
--- /dev/null
+++ b/base/base_tests/newtype_test.cpp
@@ -0,0 +1,99 @@
+#include "testing/testing.hpp"
+
+#include "base/newtype.hpp"
+
+#include "std/sstream.hpp"
+#include "std/type_traits.hpp"
+
+namespace
+{
+NEWTYPE(int, Int);
+
+string DebugPrint(Int const & i)
+{
+ stringstream sstr;
+ sstr << "Int(" << i.Get() << ')';
+ return sstr.str();
+}
+
+UNIT_TEST(NewType_TypeChecks)
+{
+ TEST((is_constructible<Int, int>::value), ());
+ TEST((is_constructible<Int, char>::value), ());
+ TEST(!(is_convertible<int, Int>::value), ());
+ TEST(!(is_convertible<Int, int>::value), ());
+}
+
+UNIT_TEST(NewType_Base)
+{
+ Int a{10};
+ TEST_EQUAL(a.Get(), 10, ());
+
+ a.Set(100);
+ TEST_EQUAL(a.Get(), 100, ());
+}
+
+UNIT_TEST(NewType_Operations)
+{
+ TEST(Int(10) == Int(10), ());
+ TEST(Int(20) != Int(30), ());
+ TEST(Int(10) < Int(20), ());
+ TEST(Int(10) <= Int(20), ());
+ TEST(Int(20) > Int(10), ());
+ TEST(Int(20) >= Int(10), ());
+
+ TEST_EQUAL(Int(10) + Int(20), Int(30), ());
+ TEST_EQUAL(Int(10) - Int(20), Int(-10), ());
+ TEST_EQUAL(Int(10) / Int(2), Int(5), ());
+ TEST_EQUAL(Int(10) * Int(2), Int(20), ());
+ TEST_EQUAL(Int(10) % Int(3), Int(1), ());
+
+ TEST_EQUAL(Int(10) | Int(7), Int(10 | 7), ());
+ TEST_EQUAL(Int(10) & Int(7), Int(10 & 7), ());
+ TEST_EQUAL(Int(10) ^ Int(7), Int(10 ^ 7), ());
+}
+
+UNIT_TEST(NewTypeMember_Operations)
+{
+ Int a(10);
+ auto b = a--;
+ TEST_EQUAL(a, Int(9), ());
+ TEST_EQUAL(b, Int(10), ());
+
+ b = --a;
+ TEST_EQUAL(a, b, ());
+ TEST_EQUAL(a, Int(8), ());
+
+ b = ++a;
+ TEST_EQUAL(a, b, ());
+ TEST_EQUAL(a, Int(9), ());
+
+ b = a++;
+ TEST_EQUAL(a, Int(10), ());
+ TEST_EQUAL(b, Int(9), ());
+
+ a.Set(100);
+ b = Int(2);
+ a *= b;
+ TEST_EQUAL(a, Int(200), ());
+
+ a /= b;
+ TEST_EQUAL(a, Int(100), ());
+
+ b.Set(3);
+ a %= b;
+ TEST_EQUAL(a, Int(1), ());
+
+ a.Set(10);
+ a |= Int(7);
+ TEST_EQUAL(a, Int(10 | 7), ());
+
+ a.Set(10);
+ a &= Int(7);
+ TEST_EQUAL(a, Int(10 & 7), ());
+
+ a.Set(10);
+ a ^= Int(7);
+ TEST_EQUAL(a, Int(10 ^ 7), ());
+}
+} // namespace