Home
last modified time | relevance | path

Searched refs:TEST_API (Results 1 – 1 of 1) sorted by relevance

/system/tools/sysprop/tests/
DCppGenIntegrationTest.cpp29 #define TEST_API(api_name, prop_name, prop_value, expected_raw_value) \ macro
58 TEST_API(test_bool_as_int, "test.bool_as_int", true, "1"); in TEST()
59 TEST_API(test_bool, "test.bool", true, "true"); in TEST()
60 TEST_API(test_int, "test.int", -123, "-123"); in TEST()
61 TEST_API(test_uint, "test.uint", 2147483648, "2147483648"); in TEST()
62 TEST_API(test_long, "test.long", -9876543210, "-9876543210"); in TEST()
63 TEST_API(test_ulong, "test.ulong", 123456789012345, "123456789012345"); in TEST()
64 TEST_API(test_double, "test.double", 3.14159265358979323846, in TEST()
66 TEST_API(test_string, "test.string", "hello world", "hello world"); in TEST()
67 TEST_API(test_enum, "test.enum", test_enum_values::C, "c"); in TEST()