Problem: non-expressive test case name

Solution: rename to more meaningful name
This commit is contained in:
Simon Giesecke 2019-03-24 13:05:38 -04:00
parent 34999d5069
commit 8dc933f2ed

View File

@ -32,7 +32,7 @@
SETUP_TEARDOWN_TESTCONTEXT SETUP_TEARDOWN_TESTCONTEXT
void test_x () void test_conflate ()
{ {
const char *bind_to = "tcp://127.0.0.1:*"; const char *bind_to = "tcp://127.0.0.1:*";
size_t len = MAX_SOCKET_STRING; size_t len = MAX_SOCKET_STRING;
@ -75,6 +75,6 @@ int main (int, char *[])
setup_test_environment (); setup_test_environment ();
UNITY_BEGIN (); UNITY_BEGIN ();
RUN_TEST (test_x); RUN_TEST (test_conflate);
return UNITY_END (); return UNITY_END ();
} }