mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 19:11:39 -06:00
29 lines
596 B
C++
29 lines
596 B
C++
#ifndef TESTSQLOBJECTS_H
|
|
#define TESTSQLOBJECTS_H
|
|
|
|
#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 parseSQLEscapedQuotes();
|
|
void createTableWithIn();
|
|
void createTableWithNotLikeConstraint();
|
|
};
|
|
|
|
#endif
|