1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
SPDX-FileCopyrightText: 2019 Andreas Cord-Landwehr <cordlandwehr@kde.org>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef TESTXSDSCHEMES_H
#define TESTXSDSCHEMES_H
#include <QObject>
class TestXsdSchemes : public QObject
{
Q_OBJECT
public:
TestXsdSchemes();
private slots:
/**
* Called before every test case.
*/
void init();
/**
* Called after every test case.
*/
void cleanup();
/**
* @brief Test if language XSD specification is valid.
*/
void languageSchemeValidationTest();
/**
* @brief Test if course XSD specification is valid.
*/
void courseSchemeValidationTest();
/**
* @brief Test if course XSD specification is valid.
*/
void schemeValidationTest();
};
#endif
|