[r383]: / branch / Aliazzz / Verifier / verifier / CODESYS_Control / Plc Logic / Application / Test / FB_AnyPrimitiveTypes / Test_ANY_STRING_Equals / svnobj  Maximize  Restore  History

Download this file

10 lines (9 with data), 1.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
METHOD PRIVATE Test_ANY_STRING_Equals
VAR
    a : STRING := 'Hello there';
    b : STRING := 'Hello there';
TEST('Test_ANY_STRING_Equals');
AssertEquals(Expected := a,
             Actual := b,
             Message := 'Values differ');
TEST_FINISHED();