Book Shelf
Loading...
Searching...
No Matches
testbookwriter.h
Go to the documentation of this file.
1
10#ifndef TESTBOOKWRITER_H
11#define TESTBOOKWRITER_H
12
13#include "book.h"
14#include "bookwriter.h"
15
16#include <QObject>
17#include <QtTest/QtTest>
18
19
24class TestBookWriter : public QObject
25{
26 Q_OBJECT
27
28private slots:
29 void testWriteSingleBook();
30 void testWriteMultipleBooks();
31 void testWriteEmptyBookList();
32 void cleanupTestCase();
33};
34
35#endif // TESTBOOKWRITER_H
This file contains the declaration of the Book class.
This file contains the declaration of the BookWriter class.
The TestBookWriter class contains tests for the BookWriter class.
Definition testbookwriter.h:25