In versions prior to 2019.09 the definition of tests worked by naming convention.
If the function name started with Test_ the function was considered as a test.
FUNCTION Test_ADD_of_4_plus_4_returns_8
VAR_TEMP
res:INT;
END_VAR
res := ADD(a:=4,b:=4);
Assert_Equal_INT(expected:=8, actual:=res);
END_FUNCTION
Since 2019.09 testing framework uses pragma feature of the ST programming language to mark functions as test functions and do not recognize tests following naming convention.
{Test}
FUNCTION ADD_of_4_plus_4_returns_8
VAR_TEMP
res:INT;
END_VAR
res := ADD(a:=4,b:=4);
Assert_Equal_INT(expected:=8, actual:=res);
END_FUNCTION
To get familiar with the new test definition syntax take a look into the chapter How to write unit tests.