Test for Singleton 36/218236/11
authorTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Wed, 20 Nov 2019 13:05:37 +0000 (14:05 +0100)
committerTomasz Okoniewski <t.okoniewski@partner.samsung.com>
Tue, 26 Nov 2019 11:12:23 +0000 (12:12 +0100)
Change-Id: Ib444d58efa8d0990f64b48d0072468e2a93eb622

tests/no-ui-scenarios/SingletonTest.cpp [new file with mode: 0644]

diff --git a/tests/no-ui-scenarios/SingletonTest.cpp b/tests/no-ui-scenarios/SingletonTest.cpp
new file mode 100644 (file)
index 0000000..d6dcae8
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2017  Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "Singleton.hpp"
+
+#include <gtest/gtest.h>
+
+struct IntHolder
+{
+       int var = 10;
+};
+
+TEST(Singleton, testSingleton)
+{
+       EXPECT_EQ(10, Singleton<IntHolder>::instance().var);
+       Singleton<IntHolder>::instance().var = 20;
+       EXPECT_EQ(20, Singleton<IntHolder>::instance().var);
+       EXPECT_EQ(&Singleton<IntHolder>::instance(), &Singleton<IntHolder>::instance());
+}
+
+int main(int argc, char *argv[])
+{
+       try {
+               ::testing::InitGoogleTest(&argc, argv);
+               return RUN_ALL_TESTS();
+       } catch (...) {
+               return 1;
+       }
+}