
make test will now compile the tests to test/test. The first test, testing string_replace_char from utils.c, was added.
13 lines
252 B
C
13 lines
252 B
C
#include "greatest.h"
|
|
|
|
SUITE_EXTERN(utils);
|
|
|
|
GREATEST_MAIN_DEFS();
|
|
|
|
int main(int argc, char *argv[]) {
|
|
GREATEST_MAIN_BEGIN();
|
|
RUN_SUITE(utils);
|
|
GREATEST_MAIN_END();
|
|
}
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|