File indexing completed on 2024-12-22 04:52:52
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 #include "test.h" 0009 0010 void Test::addTest(MakeTest *test) 0011 { 0012 mListTest.append(test); 0013 } 0014 0015 void Test::runTests() 0016 { 0017 for (int i = 0; i < mListTest.size(); ++i) { 0018 mListTest.at(i)->start(); 0019 } 0020 }