| 16 | #include "../engine_service_private.h" |
| 17 | |
| 18 | TEST_F(EngineTest, ServiceInstanceNameSanitizesAddress) |
| 19 | { |
| 20 | char out[64]; |
| 21 | dmEngineService::BuildServiceInstanceName("Local Host", "8001", 0, out, sizeof(out)); |
| 22 | ASSERT_STREQ("defold-local-host-8001", out); |
| 23 | } |
| 24 | |
| 25 | TEST_F(EngineTest, SanitizeMDNSLabelReplacesLeadingDashWhenRequested) |
| 26 | { |
nothing calls this directly
no test coverage detected