Book Shelf
Loading...
Searching...
No Matches
testauthor.h
Go to the documentation of this file.
1
10#ifndef TESTAUTHOR_H
11#define TESTAUTHOR_H
12
13#include <QObject>
14#include <QtTest/QtTest>
15
20class TestAuthor : public QObject
21{
22 Q_OBJECT
23
24private slots:
25 void testConstructor();
26 void testGetFirstName();
27 void testGetLastName();
28 void testToString();
29};
30
31#endif // TESTAUTHOR_H
The TestAuthor class contains tests for the Author class.
Definition testauthor.h:21