17 lines
371 B
C
17 lines
371 B
C
#include "framework/unity.h"
|
|
|
|
#include <string.h>
|
|
#include "common/errors.h"
|
|
#include "pc-dos/dossys.h"
|
|
|
|
|
|
void test_errors_FatalError() {
|
|
_unittest_do_not_exit = 1;
|
|
FatalError(0x6b, "test_errors", "FATAL");
|
|
TEST_ASSERT_EQUAL_STRING("Can't open 'test_errors'", _unittest_last_fatal_error);
|
|
}
|
|
|
|
void test_errors_suite() {
|
|
RUN_TEST(test_errors_FatalError);
|
|
}
|