tests: initialize member variables @ constuctor of TestZone class 52/241852/1
authorSung-Jin Park <sj76.park@samsung.com>
Wed, 19 Aug 2020 04:12:05 +0000 (13:12 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Thu, 20 Aug 2020 10:12:10 +0000 (19:12 +0900)
Change-Id: Ib2165f55d4e5a14b05c85fc7274831803fea1678
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
tests/DSZone-test.cpp

index 510712b..e302e52 100644 (file)
@@ -41,7 +41,8 @@ class TestZone : public DSObject
 {
 public:
        TestZone(std::shared_ptr<DSZone> zone)
-               : __boolOnWindowCreated(false)
+               : __boolOnWindowCreated(false),
+                 __boolOnWindowShellCreated(false)
        {
                zone->registerCallbackWindowCreated(this, std::bind(&TestZone::onWindowCreated, this, std::placeholders::_1));
                __zone = zone;