Require -std=c++11 and use std::shared_ptr instead of SharedHandle

This commit is contained in:
Tatsuhiro Tsujikawa 2013-06-22 01:10:38 +09:00
parent 126a4bde61
commit 07d270c87e
709 changed files with 6305 additions and 6878 deletions

View file

@ -13,8 +13,8 @@ class DefaultAuthResolverTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE_END();
private:
//NetrcHandle _netrc;
//SharedHandle<Option> _option;
SharedHandle<DefaultAuthResolver> resolver_;
//std::shared_ptr<Option> _option;
std::shared_ptr<DefaultAuthResolver> resolver_;
public:
void setUp()
{
@ -23,7 +23,7 @@ public:
resolver_.reset(new DefaultAuthResolver());
//_factory->setOption(_option.get());
resolver_->setDefaultAuthConfig
(SharedHandle<AuthConfig>(new AuthConfig("foo", "bar")));
(std::shared_ptr<AuthConfig>(new AuthConfig("foo", "bar")));
}
void testResolveAuthConfig_without_userDefined();
@ -35,15 +35,15 @@ CPPUNIT_TEST_SUITE_REGISTRATION( DefaultAuthResolverTest );
void DefaultAuthResolverTest::testResolveAuthConfig_without_userDefined()
{
SharedHandle<AuthConfig> authConfig = resolver_->resolveAuthConfig("localhost");
std::shared_ptr<AuthConfig> authConfig = resolver_->resolveAuthConfig("localhost");
CPPUNIT_ASSERT_EQUAL(std::string("foo:bar"), authConfig->getAuthText());
}
void DefaultAuthResolverTest::testResolveAuthConfig_with_userDefined()
{
resolver_->setUserDefinedAuthConfig
(SharedHandle<AuthConfig>(new AuthConfig("myname", "mypasswd")));
SharedHandle<AuthConfig> authConfig = resolver_->resolveAuthConfig("localhost");
(std::shared_ptr<AuthConfig>(new AuthConfig("myname", "mypasswd")));
std::shared_ptr<AuthConfig> authConfig = resolver_->resolveAuthConfig("localhost");
CPPUNIT_ASSERT_EQUAL(std::string("myname:mypasswd"), authConfig->getAuthText());
}