RobotTestingFramework  2.0.1
Robot Testing Framework
DllFixturePluginLoader.h
Go to the documentation of this file.
1 /*
2  * Robot Testing Framework
3  *
4  * Copyright (C) 2015-2019 Istituto Italiano di Tecnologia (IIT)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 
22 #ifndef ROBOTTESTINGFRAMEWORK_DLLFIXTUREPLUGINLOADER_H
23 #define ROBOTTESTINGFRAMEWORK_DLLFIXTUREPLUGINLOADER_H
24 
26 
27 #include <string>
28 
29 namespace robottestingframework {
30 namespace plugin {
31 
37 {
38 public:
43 
48 
55  FixtureManager* open(const std::string filename);
56 
61  void close();
62 
67  std::string getLastError();
68 
69 private:
71 };
72 
73 } // namespace plugin
74 } // namespace robottestingframework
75 
76 #endif // ROBOTTESTINGFRAMEWORK_DLLFIXTUREPLUGINLOADER_H
The FixtureManager can be used to to setup any fixture which is required for the tests before executi...
The DllFixturePluginLoader loads an test case plug-in and gives the direct access to the TestCase.
std::string getLastError()
getLastError gets the last error if any.
void close()
close Unloads the plugin and deletes any allocated memory.
FixtureManager * open(const std::string filename)
open Loads a test case plugin
virtual ~DllFixturePluginLoader()
DllFixturePluginLoader destructor.
DllFixturePluginLoader()
DllFixturePluginLoader constructor.