LeechCraft 0.6.70-18808-g3467692359
Modular cross-platform feature rich live environment.
Loading...
Searching...
No Matches
oraltest.h
Go to the documentation of this file.
1/**********************************************************************
2 * LeechCraft - modular cross-platform feature rich internet client.
3 * Copyright (C) 2006-2014 Georg Rudoy
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
7 **********************************************************************/
8
9#pragma once
10
11#include <QObject>
12
13namespace LC
14{
15namespace Util
16{
17 class OralTest : public QObject
18 {
19 Q_OBJECT
20 private slots:
21 void testNestedIndirect ();
22
23 void testAutoPKeyRecordInsertSelect ();
24 void testAutoPKeyRecordInsertRvalueReturnsPKey ();
25 void testAutoPKeyRecordInsertConstLvalueReturnsPKey ();
26 void testAutoPKeyRecordInsertSetsPKey ();
27
28 void testNoPKeyRecordInsertSelect ();
29
30 void testNonInPlaceConstructibleRecordInsertSelect ();
31
32 void testComplexConstraintsRecordInsertSelectDefault ();
33 void testComplexConstraintsRecordInsertSelectIgnore ();
34 void testComplexConstraintsRecordInsertSelectReplace ();
35
36 void testConstrainedAutogenPKeyRecordInsertIgnore ();
37 void testConstrainedAutogenPKeyRecordInsertReplace ();
38
39 void testOptionalFieldNullRoundTrip ();
40 void testOptionalFieldValueRoundTrip ();
41 void testOptionalFieldUpdateNullToValue ();
42 void testOptionalFieldUpdateValueToNull ();
43 };
44}
45}
Definition constants.h:15