ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Adding database loading and data conversion to orm module
[toast/confclerk.git]
/
src
/
test
/
model
/
eventtest.h
1
#ifndef EVENTTEST_H
2
#define EVENTTEST_H
3
4
#include <QObject>
5
6
class EventTest : public QObject
7
{
8
Q_OBJECT
9
10
private slots:
11
void initTestCase();
12
13
void getById();
14
void storingValues();
15
void hydrate();
16
void columnsForSelect();
17
void selectQuery();
18
};
19
20
21
#endif // EVENTTEST_H
22