Add unit tests for most eventhandlerset script sequences

This commit is contained in:
Jan
2021-11-14 18:17:13 +01:00
parent 252dee03ba
commit 109955b8f2
3 changed files with 833 additions and 26 deletions

View File

@ -24,6 +24,13 @@ public:
{
}
MockLexer(std::vector<TokenType> tokens, TokenType eof)
: m_tokens(std::move(tokens)),
m_eof(std::move(eof)),
m_pop_count(0)
{
}
~MockLexer() override = default;
MockLexer(const MockLexer& other) = delete;
MockLexer(MockLexer&& other) noexcept = default;