umbrello 2.38.4
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
testpackage.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2019 Ralf Habacker <ralf.habacker@freenet.de>
3
4 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
5*/
6
7#ifndef TESTPACKAGE_H
8#define TESTPACKAGE_H
9
10#include "testbase.h"
11
12class TestPackage : public TestBase
13{
14 Q_OBJECT
15protected:
17protected slots:
19 {
21 _sl = new SetLoading;
22 }
23
25 {
26 delete _sl;
27 }
28
29private slots:
31 void test_saveAndLoad();
32};
33
34#endif // TESTASSOCIATION_H
Definition testbase.h:74
Definition testbase.h:34
virtual void initTestCase()
Definition testbase.cpp:28
Definition testpackage.h:13
void test_saveAndLoad()
Definition testpackage.cpp:30
void cleanupTestCase()
Definition testpackage.h:24
void initTestCase()
Definition testpackage.h:18
SetLoading * _sl
Definition testpackage.h:16
void test_appendClassesAndInterfaces()
Definition testpackage.cpp:13