diff options
author | sanine <sanine.not@pm.me> | 2021-09-04 09:31:50 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2021-09-04 09:31:50 -0500 |
commit | fc8f1758d7c6a21851c5c475254b07da891a7592 (patch) | |
tree | f3704cc9967f6946842e65255aab4f147fe0d1bb /src | |
parent | 1f0be0e482147faa479818a9a2a179e302b9fec6 (diff) |
remove hs_create_enum_tests.c
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/hs_create_enum_tests.c | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/tests/hs_create_enum_tests.c b/src/tests/hs_create_enum_tests.c deleted file mode 100644 index b24ec71..0000000 --- a/src/tests/hs_create_enum_tests.c +++ /dev/null @@ -1,74 +0,0 @@ -#include "hs_tests.h" - -#define check(string, value) do { \ - lua_getfield(L, index, string); \ - mu_assert("field '" string "' is not an integer!", lua_isnumber(L, -1)); \ - int enum_value = lua_tointeger(L, -1); \ - mu_assert("field '" string "' does not match expected value!", enum_value == (value)); \ - lua_pop(L, -1); \ - lua_rawgeti(L, index, value); \ - mu_assert("enum field for '" string "' is not a string!", lua_isstring(L, -1)); \ - const char *str = lua_tostring(L, -1); \ - mu_assert("enum field for '" string "' does not match expected value!", strcmp(str, string) == 0); \ - lua_pop(L, -1); \ - } while(0) - - -/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - * - * tests - * - * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - */ - -enum test_enum { VAL0, VAL1, VAL2, VAL3, N_VALS }; - - -TEST(enum_test) -{ - int index = hs_create_enum - (L, - "zero", VAL0, - "one", VAL1, - "two", VAL2, - "three", VAL3, - HS_END); - mu_assert("failed to return correct index!", index == lua_gettop(L)); - check("zero", VAL0); - check("one", VAL1); - check("two", VAL2); - check("three", VAL3); - return 0; -} - -TEST(int_test) -{ - int index = hs_create_enum - (L, - "someValue", 23, - "anotherValue", 444, - "???", -5, - "217", 217, - HS_END); - mu_assert("failed to return correct index!", index == lua_gettop(L)); - check("someValue", 23); - check("anotherValue", 444); - check("???", -5); - check("217", 217); - return 0; -} - - -/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - * - * test suite - * - * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - */ - -void hs_create_enum_tests() -{ - printf("running hs_create_enum() tests...\n"); - mu_run_test("create enum table from enum", enum_test); - mu_run_test("create enum table from integers", int_test); -} |