summaryrefslogtreecommitdiff
path: root/platform/ios/test/common/ios_test_runner.hpp
blob: db263dc73c5274d8377a8015a1097a39fefa7934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef ios_test_runner_hpp
#define ios_test_runner_hpp

#include <string>

class TestRunner {
public:
    TestRunner() = default;
    ~TestRunner() = default;

    bool startTest(const std::string& path);
};

#endif /* ios_test_runner_hpp */