verify the service name */
| 246 | |
| 247 | /* verify the service name */ |
| 248 | static int |
| 249 | service_name(void) |
| 250 | { |
| 251 | const char *name = rte_service_get_name(0); |
| 252 | int equal = strcmp(name, DUMMY_SERVICE_NAME); |
| 253 | TEST_ASSERT_EQUAL(0, equal, "Error: Service name not correct"); |
| 254 | |
| 255 | return unregister_all(); |
| 256 | } |
| 257 | |
| 258 | /* verify service attr get */ |
| 259 | static int |
nothing calls this directly
no test coverage detected