You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef ENGINE_INDIVIDUAL_SESSION_SUITE_H
|
|
#define ENGINE_INDIVIDUAL_SESSION_SUITE_H
|
|
|
|
#include <cpptest-suite.h>
|
|
#include <string>
|
|
#include "pEpEngine.h"
|
|
|
|
using namespace std;
|
|
|
|
class EngineTestIndividualSuite : public EngineTestSuite {
|
|
public:
|
|
EngineIndividualTestSuite(string suitename, string test_home_dir);
|
|
~EngineIndividualTestSuite();
|
|
protected:
|
|
virtual void setup();
|
|
virtual void tear_down();
|
|
};
|
|
#endif
|