the editor highlights the TEST and TEST_FAIL_MESSAGE lines as "syntax error" (no indication what syntax is in error). but the code compiles without error.
#include "unity_fixture.h"
TEST(Test01a_Init, testInitCalled)
{
if (!_InitCalled)
{
TEST_FAIL_MESSAGE("Init() was not called");
return;
}
}
"unity_fixture.h" is from https://sourceforge.net/projects/unity/

