2016-07-25 15:18:34 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include "minunit.h"
|
|
|
|
|
2016-07-26 11:00:54 +00:00
|
|
|
#include "mh/errors.h"
|
2016-07-25 15:18:34 +00:00
|
|
|
|
|
|
|
char error_buf[256];
|
|
|
|
|
|
|
|
static char *test_error_messages_exist(void) {
|
|
|
|
int i = -1;
|
|
|
|
for (; i > MH_E_LAST; i--) {
|
|
|
|
sprintf(error_buf, "error: code %d has no message", i);
|
|
|
|
mu_assert(error_buf, strlen(mh_error_string((mh_error) i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-26 09:57:05 +00:00
|
|
|
static char *mu_all_tests(void) {
|
2016-07-25 15:18:34 +00:00
|
|
|
mu_run_test(test_error_messages_exist);
|
|
|
|
return 0;
|
|
|
|
}
|