mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-21 03:21:43 -06:00
18 lines
224 B
C++
18 lines
224 B
C++
#ifndef TESTREGEX_H
|
|
#define TESTREGEX_H
|
|
|
|
#define REGEX_UNIT_TEST
|
|
|
|
#include <QObject>
|
|
|
|
class TestRegex : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void sqlQueryComments();
|
|
void sqlQueryComments_data();
|
|
};
|
|
|
|
#endif
|