2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
9 #include "utils/test/TestGlobalsHandlingPattern1.h"
11 #include <gtest/gtest.h>
13 using namespace xbmcutil
;
16 bool TestGlobalPattern1::ctorCalled
= false;
17 bool TestGlobalPattern1::dtorCalled
= false;
19 TEST(TestGlobal
, Pattern1
)
21 EXPECT_TRUE(TestGlobalPattern1::ctorCalled
);
23 std::shared_ptr
<TestGlobalPattern1
> ptr
= g_testGlobalPattern1Ref
;