24 lines
526 B
C
24 lines
526 B
C
/* vim: set ts=8 sw=8 noexpandtab: */
|
|
#include <string.h>
|
|
#include "minunit.h"
|
|
|
|
#include "mh/errors.h"
|
|
|
|
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(i)) > 0);
|
|
mu_assert(error_buf,
|
|
strcmp(mh_error_string(-10000), mh_error_string(i)) != 0);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static char *mu_all_tests(void) {
|
|
mu_run_test(test_error_messages_exist);
|
|
return NULL;
|
|
}
|