IronGOLEM/tests/test.🗿

24 lines
325 B
Plaintext
Raw Normal View History

2023-06-13 07:15:20 -04:00
global name;
2023-06-18 05:11:23 -04:00
test_str(value, reach_value, description)
2023-06-12 14:26:35 -04:00
{
putstr(name);
if (value != reach_value)
{
putstr(": ERROR: ");
putstr(", ");
2023-06-13 07:15:20 -04:00
putstr(description);
2023-06-12 14:26:35 -04:00
putstr(" [");
putstr(reach_value);
putstr(" != ");
putstr(value);
putstr("]");
}
else
{
putstr(": OK: ");
2023-06-13 07:15:20 -04:00
putstr(description);
2023-06-12 14:26:35 -04:00
}
wrt '\n';
}