[std] Added scoped_ptr.

This commit is contained in:
d-kunin 2013-08-05 08:58:41 +03:00
parent a5ae4c9922
commit 8f89d40423
2 changed files with 7 additions and 2 deletions

5
std/scoped_ptr.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
#include "../3rdparty/boost/boost/scoped_ptr.hpp"
using boost::scoped_ptr;

View file

@ -2,14 +2,14 @@
#include "../std/utility.hpp"
#include "../article_storage.hpp"
#include "../std/scoped_ptr.hpp"
TEST(ArticleStorageMock, ReturnsIfAnArticleExists)
{
map<string, Article> articles;
articles.insert(make_pair("SomeId", Article()));
ArticleStorage * storage = new ArticleStorageMock(articles);
scoped_ptr<ArticleStorage> storage(new ArticleStorageMock(articles));
Article article;
EXPECT_TRUE(storage->GetArticleById("SomeId", article));
EXPECT_FALSE(storage->GetArticleById("SomeIdThatDoesNotExist", article));
delete storage;
}