mirror of
https://github.com/fallout2-ce/fallout2-ce.git
synced 2026-07-27 16:47:11 -07:00
16 lines
532 B
Plaintext
16 lines
532 B
Plaintext
#include "test_utils.h"
|
|
#include "sfall.h"
|
|
|
|
procedure start begin
|
|
// TODO: move this to a more suitable place, once we have more functions implemented
|
|
// These are in the "Other" category in the sfall documentation
|
|
display_msg("Testing misc functions...");
|
|
variable hand := active_hand;
|
|
toggle_active_hand;
|
|
call assertEquals("active_hand toggled", active_hand, 1 - hand);
|
|
toggle_active_hand;
|
|
call assertEquals("active_hand toggled", active_hand, hand);
|
|
|
|
call report_test_results("misc");
|
|
end
|