2021-09-11 14:40:53 +02:00
|
|
|
#pragma once
|
|
|
|
|
2021-09-11 14:41:18 +02:00
|
|
|
#include "test_pattern.hpp"
|
2021-09-11 14:40:53 +02:00
|
|
|
|
|
|
|
namespace hex::test {
|
|
|
|
|
2021-09-11 14:41:18 +02:00
|
|
|
class TestPatternExample : public TestPattern {
|
2021-09-11 14:40:53 +02:00
|
|
|
public:
|
2021-09-11 23:13:49 +02:00
|
|
|
TestPatternExample() : TestPattern("") {
|
2021-09-11 14:40:53 +02:00
|
|
|
|
2021-09-11 14:41:18 +02:00
|
|
|
}
|
|
|
|
~TestPatternExample() override = default;
|
2021-09-11 14:40:53 +02:00
|
|
|
|
|
|
|
[[nodiscard]]
|
2021-09-11 14:41:18 +02:00
|
|
|
std::string getSourceCode() const override {
|
|
|
|
return R"(
|
|
|
|
|
|
|
|
)";
|
2021-09-11 14:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|