File indexing completed on 2024-06-23 05:05:57

0001 /*
0002     SPDX-FileCopyrightText: 2009 Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
0003     based on kdepimlibs/akonadi/tests/benchmarker.cpp wrote by Robert Zwerus <arzie@dds.nl>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #pragma once
0009 
0010 #include "maketest.h"
0011 
0012 class Test
0013 {
0014 protected:
0015     QList<MakeTest *> mListTest;
0016 
0017 public:
0018     void addTest(MakeTest *test);
0019     void runTests();
0020 };