| 38 | } |
| 39 | |
| 40 | void DefaultAuthResolverTest::testResolveAuthConfig_with_userDefined() |
| 41 | { |
| 42 | resolver_->setUserDefinedCred("myname", "mypasswd"); |
| 43 | auto authConfig = resolver_->resolveAuthConfig("localhost"); |
| 44 | CPPUNIT_ASSERT_EQUAL(std::string("myname:mypasswd"), |
| 45 | authConfig->getAuthText()); |
| 46 | } |
| 47 | |
| 48 | } // namespace aria2 |
nothing calls this directly
no test coverage detected