mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
Add unit tests for most eventhandlerset script sequences
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user