1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/** Simple test for increment type: signed char, int, long storage: static, attr: volatile */ #include <testfwk.h> static void testIncrement(void) { {attr} {storage} {type} i; i = 0; i--; ASSERT(i == -1); }