File indexing completed on 2024-05-12 05:42:41

0001 #include <cutehmi/Initializer.hpp>
0002 
0003 #include <QtTest/QtTest>
0004 
0005 namespace cutehmi {
0006 
0007 class InitializerMock:
0008     public Initializer<InitializerMock>
0009 {
0010     public:
0011         InitializerMock();
0012 
0013         static int InitCtr;
0014         static int DeinitCtr;
0015         static int CtorCtr;
0016 };
0017 
0018 int InitializerMock::InitCtr = 0;
0019 int InitializerMock::DeinitCtr = 0;
0020 int InitializerMock::CtorCtr = 0;
0021 
0022 InitializerMock::InitializerMock():
0023     Initializer<InitializerMock>(
0024         []() {
0025             InitCtr++;
0026         },
0027         []() {
0028             DeinitCtr++;
0029         }
0030     )
0031 {
0032     CtorCtr++;
0033 }
0034 
0035 class test_ExtensionInitializer:
0036     public QObject
0037 {
0038     Q_OBJECT
0039 
0040     private slots:
0041         void instances();
0042 };
0043 
0044 void test_ExtensionInitializer::instances()
0045 {
0046     QVERIFY(InitializerMock::InitCtr == 0);
0047     QVERIFY(InitializerMock::DeinitCtr == 0);
0048     QVERIFY(InitializerMock::CtorCtr == 0);
0049 
0050     {
0051         InitializerMock instance1;
0052         QCOMPARE(InitializerMock::InitCtr, 1);
0053         QCOMPARE(InitializerMock::DeinitCtr, 0);
0054         QCOMPARE(InitializerMock::CtorCtr, 1);
0055 
0056         InitializerMock instance2;
0057         QCOMPARE(InitializerMock::InitCtr, 1);
0058         QCOMPARE(InitializerMock::DeinitCtr, 0);
0059         QCOMPARE(InitializerMock::CtorCtr, 2);
0060     }
0061 
0062     QCOMPARE(InitializerMock::InitCtr, 1);
0063     QCOMPARE(InitializerMock::DeinitCtr, 1);
0064     QCOMPARE(InitializerMock::CtorCtr, 2);
0065 }
0066 
0067 }
0068 
0069 QTEST_MAIN(cutehmi::test_ExtensionInitializer)
0070 #include "test_ExtensionInitializer.moc"
0071 
0072 //(c)C: Copyright © 2019-2020, Michał Policht <michal@policht.pl>. All rights reserved.
0073 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0074 //(c)C: This file is a part of CuteHMI.
0075 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
0076 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
0077 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0078 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0079 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0080 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0081 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.