Files
sqlitebrowser/src/tests/testsqlobjects.h
Martin Kleusberg 980f42d200 Tests: Add unit test for CHECK NOT LIKE constraint
Add a unit test for the grammar fix in
9cb0614ecf.
2014-06-20 12:50:30 +02:00

23 lines
503 B
C++

#include <QObject>
class TestTable: public QObject
{
Q_OBJECT
private slots:
void sqlOutput();
void autoincrement();
void notnull();
void withoutRowid();
void parseSQL();
void parseSQLdefaultexpr();
void parseSQLMultiPk();
void parseSQLForeignKey();
void parseSQLSingleQuotes();
void parseSQLKeywordInIdentifier();
void parseSQLWithoutRowid();
void parseNonASCIIChars();
void createTableWithIn();
void createTableWithNotLikeConstraint();
};