introduce a new set of tests
[platform/core/uifw/aurum.git] / tests / Test_Misc.cc
1 #include <gtest/gtest.h>
2
3 #include <UiDevice.h>
4 #include <UiObject.h>
5 #include <UiSelector.h>
6 #include <Sel.h>
7
8 #include "MockDeviceImpl.h"
9
10 #include <iostream>
11 #include <algorithm>
12
13 #include <loguru.hpp>
14
15
16 #include "MockAccessibleWatcher.h"
17 #include "MockAccessibleApplication.h"
18 #include "MockAccessibleWindow.h"
19 #include "MockAccessibleNode.h"
20
21
22 class AurumTestMisc : public ::testing::Test {
23     public:
24         AurumTestMisc(){
25             /*const char *logPath = "/tmp/ua.log";
26             loguru::g_preamble = false;
27             loguru::add_file(logPath, loguru::Append, loguru::Verbosity_MAX);*/
28         }
29     protected:
30         void SetUp() override {
31         }
32
33         void TearDown() override {
34         }
35 };
36
37 TEST_F(AurumTestMisc, EmptyTest)
38 {
39     ASSERT_EQ(true, true);
40 }