mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
Move common expression classes to simple parsing setup
This commit is contained in:
@ -986,7 +986,7 @@ namespace test::parsing::menu::sequence::event_handler_set
|
||||
REQUIRE(conditionElement->m_condition != nullptr);
|
||||
REQUIRE(conditionElement->m_condition->IsStatic());
|
||||
const auto staticValue = conditionElement->m_condition->Evaluate();
|
||||
REQUIRE(staticValue.m_type == CommonExpressionValue::Type::INT);
|
||||
REQUIRE(staticValue.m_type == SimpleExpressionValue::Type::INT);
|
||||
REQUIRE(staticValue.m_int_value == 1337);
|
||||
|
||||
REQUIRE(conditionElement->m_condition_elements);
|
||||
@ -1079,7 +1079,7 @@ namespace test::parsing::menu::sequence::event_handler_set
|
||||
REQUIRE(conditionElement->m_condition != nullptr);
|
||||
REQUIRE(conditionElement->m_condition->IsStatic());
|
||||
const auto staticValue = conditionElement->m_condition->Evaluate();
|
||||
REQUIRE(staticValue.m_type == CommonExpressionValue::Type::INT);
|
||||
REQUIRE(staticValue.m_type == SimpleExpressionValue::Type::INT);
|
||||
REQUIRE(staticValue.m_int_value == 1337);
|
||||
|
||||
REQUIRE(conditionElement->m_condition_elements);
|
||||
|
Reference in New Issue
Block a user