Book Shelf
Loading...
Searching...
No Matches
testbooktablemodel.h
Go to the documentation of this file.
1
10#ifndef TESTBOOKTABLEMODEL_H
11#define TESTBOOKTABLEMODEL_H
12
13#include <QObject>
14#include <QtTest/QtTest>
15
16
21class TestBookTableModel : public QObject
22{
23 Q_OBJECT
24
25private slots:
26 void testRowCount();
27 void testColumnCount();
28 void testData();
29 void testHeaderData();
30 void testSetData();
31 void testAddBook();
32};
33
34#endif // TESTBOOKTABLEMODEL_H
The TestBookTableModel class contains tests for the BookTableModel class.
Definition testbooktablemodel.h:22