Book Shelf
Loading...
Searching...
No Matches
testbookfactory.h
Go to the documentation of this file.
1
10#ifndef TESTBOOKFACTORY_H
11#define TESTBOOKFACTORY_H
12
13#include <QObject>
14#include <QtTest/QtTest>
15
16
21class TestBookFactory : public QObject
22{
23 Q_OBJECT
24
25private slots:
26 void testCreateBook();
27 void testCreateBookInvalidData();
28 void testSingletonInstance();
29};
30
31#endif // TESTBOOKFACTORY_H
The TestBookFactory class contains tests for the BookFactory class.
Definition testbookfactory.h:22