This repository has been archived on 2023-09-10. You can view files and clone it, but cannot push or open issues/pull-requests.
joko/tests/Parser.cpp

18 lines
252 B
C++

#include <catch2/catch.hpp>
#include "../lib/Parser.hpp"
#include "../lib/Factory.hpp"
class ParserTest
{
public:
explicit ParserTest() {}
virtual ~ParserTest() {}
protected:
jk::Logger m_logger;
};
TEST_CASE_METHOD(ParserTest, "Parser_")
{
}