diff options
Diffstat (limited to 'tests/testparseperformance.h')
-rw-r--r-- | tests/testparseperformance.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/testparseperformance.h b/tests/testparseperformance.h new file mode 100644 index 000000000..f1c0a9e43 --- /dev/null +++ b/tests/testparseperformance.h @@ -0,0 +1,18 @@ +// SPDX-License-Identifier: GPL-2.0 +#ifndef TESTPARSEPERFORMANCE_H +#define TESTPARSEPERFORMANCE_H + +#include <QtTest> + +class TestParsePerformance : public QObject { + Q_OBJECT +private slots: + void initTestCase(); + void init(); + void cleanup(); + + void parseSsrf(); + void parseGit(); +}; + +#endif |