1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* Robot Testing Framework
*
* Copyright (C) 2015-2019 Istituto Italiano di Tecnologia (IIT)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <robottestingframework/ConsoleListener.h>
#include <robottestingframework/TestAssert.h>
#include <robottestingframework/TestCase.h>
#include <robottestingframework/TestResult.h>
#include <robottestingframework/TestRunner.h>
#include <robottestingframework/TestSuite.h>
#include <robottestingframework/dll/DllFixturePluginLoader.h>
#include <stdio.h>
using namespace robottestingframework;
using namespace robottestingframework::plugin;
class MyTest1 : public TestCase
{
public:
MyTest1() :
TestCase("MyTest1")
{
}
void run() override
{
ROBOTTESTINGFRAMEWORK_TEST_REPORT("testing smaller");
ROBOTTESTINGFRAMEWORK_TEST_CHECK(3 < 5, "is not smaller");
}
};
int main(int argc, char* argv[])
{
if (argc < 2) {
printf("Usage: %s <fixcture manager plugin file name>\n", argv[0]);
printf("for example: %s libmyfixture.so\n", argv[0]);
return 0;
}
// load the test case plugin
printf("Loading the fixture manager plugin... \n");
DllFixturePluginLoader loader;
FixtureManager* fixture = loader.open(argv[1]);
if (fixture == NULL) {
printf("%s\n", loader.getLastError().c_str());
return 0;
}
// create a test listener to collect the result
ConsoleListener listener(false);
// create a test result and add the listeners
TestResult result;
result.addListener(&listener);
// create a test suite
TestSuite suite("MyTestSuite");
// set the fixture manager for the test suite
suite.setFixtureManager(fixture);
// creates test cases and add them to the suite
MyTest1 test1;
suite.addTest(&test1);
// create a test runner and run the tests
TestRunner runner;
runner.addTest(&suite);
runner.run(result);
return 0;
}
|