| 32 | CPPUNIT_TEST_SUITE_REGISTRATION(DefaultAuthResolverTest); |
| 33 | |
| 34 | void DefaultAuthResolverTest::testResolveAuthConfig_without_userDefined() |
| 35 | { |
| 36 | auto authConfig = resolver_->resolveAuthConfig("localhost"); |
| 37 | CPPUNIT_ASSERT_EQUAL(std::string("foo:bar"), authConfig->getAuthText()); |
| 38 | } |
| 39 | |
| 40 | void DefaultAuthResolverTest::testResolveAuthConfig_with_userDefined() |
| 41 | { |
nothing calls this directly
no test coverage detected