blob: 95b4154995666f8d0cd10314ea23d99a96003f6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <test/lib/color.h>
int main()
{
bool_t all_success = TRUE;
// lib/color.c Test
all_success &= TEST_lib_color();
if (all_success == TRUE) {
return 0;
}
return 1;
}
|