15 lines
350 B
C++
15 lines
350 B
C++
#ifndef MonitoringControllerTest_hpp
|
|
#define MonitoringControllerTest_hpp
|
|
|
|
#include "oatpp-test/UnitTest.hpp"
|
|
|
|
class MonitoringControllerTest : public oatpp::test::UnitTest {
|
|
public:
|
|
MonitoringControllerTest() : oatpp::test::UnitTest("TEST[MonitoringControllerTest]")
|
|
{}
|
|
|
|
void onRun() override;
|
|
};
|
|
|
|
#endif // MonitoringControllerTest_hpp
|