Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/ntp/sntp/tests/
DkodFile.c52 TEST_ASSERT_EQUAL_STRING("DENY", res->type); in test_ReadCorrectFile()
53 TEST_ASSERT_EQUAL_STRING("192.0.2.5", res->hostname); in test_ReadCorrectFile()
57 TEST_ASSERT_EQUAL_STRING("RSTR", res->type); in test_ReadCorrectFile()
58 TEST_ASSERT_EQUAL_STRING("192.0.2.100", res->hostname); in test_ReadCorrectFile()
72 TEST_ASSERT_EQUAL_STRING("DENY", res->type); in test_ReadFileWithBlankLines()
73 TEST_ASSERT_EQUAL_STRING("192.0.2.5", res->hostname); in test_ReadFileWithBlankLines()
77 TEST_ASSERT_EQUAL_STRING("RSTR", res->type); in test_ReadFileWithBlankLines()
78 TEST_ASSERT_EQUAL_STRING("192.0.2.100", res->hostname); in test_ReadFileWithBlankLines()
82 TEST_ASSERT_EQUAL_STRING("DENY", res->type); in test_ReadFileWithBlankLines()
83 TEST_ASSERT_EQUAL_STRING("example.com", res->hostname); in test_ReadFileWithBlankLines()
DkodDatabase.c38 TEST_ASSERT_EQUAL_STRING(HOST, result->hostname); in test_SingleEntryHandling()
39 TEST_ASSERT_EQUAL_STRING(REASON, result->type); in test_SingleEntryHandling()
61 TEST_ASSERT_EQUAL_STRING(HOST1, result->hostname); in test_MultipleEntryHandling()
62 TEST_ASSERT_EQUAL_STRING(REASON1, result->type); in test_MultipleEntryHandling()
65 TEST_ASSERT_EQUAL_STRING(HOST2, result->hostname); in test_MultipleEntryHandling()
66 TEST_ASSERT_EQUAL_STRING(REASON2, result->type); in test_MultipleEntryHandling()
69 TEST_ASSERT_EQUAL_STRING(HOST3, result->hostname); in test_MultipleEntryHandling()
70 TEST_ASSERT_EQUAL_STRING(REASON3, result->type); in test_MultipleEntryHandling()
Dutilities.c92 TEST_ASSERT_EQUAL_STRING(ADDR, ss_to_str(&input)); in test_IPv4Address()
93 TEST_ASSERT_EQUAL_STRING(ADDR, addrinfo_to_str(&inputA)); in test_IPv4Address()
112 TEST_ASSERT_EQUAL_STRING(expected, ss_to_str(&input)); in test_IPv6Address()
115 TEST_ASSERT_EQUAL_STRING(expected, addrinfo_to_str(&inputA)); in test_IPv6Address()
/freebsd-10-stable/contrib/ntp/sntp/unity/
Dunity_fixture.h81 #define STRCMP_EQUAL(expected, actual) TEST_ASSERT_EQUAL_STRING((expected), (actual…
Dunity.h118 #define TEST_ASSERT_EQUAL_STRING(expected, actual) … macro