[std] Added scoped_ptr.
This commit is contained in:
parent
a5ae4c9922
commit
8f89d40423
2 changed files with 7 additions and 2 deletions
5
std/scoped_ptr.hpp
Normal file
5
std/scoped_ptr.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include "../3rdparty/boost/boost/scoped_ptr.hpp"
|
||||
|
||||
using boost::scoped_ptr;
|
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue