- Timestamp:
- Nov 22, 2015, 5:30:57 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/test/util/output/OutputStreamTest.cc
r9547 r10829 8 8 #include "util/output/OutputManager.h" 9 9 #include "util/output/MemoryWriter.h" 10 #include "util/SharedPtr.h"11 10 12 11 namespace orxonox … … 88 87 { 89 88 this->manager_ = new MockOutputManager(); 90 OutputManager::Testing::getInstancePointer() = this->manager_;89 OutputManager::Testing::getInstancePointer().reset(this->manager_); 91 90 } 92 91 93 92 virtual void TearDown() 94 93 { 95 OutputManager::Testing::getInstancePointer() = new OutputManager();94 OutputManager::Testing::getInstancePointer().reset(new OutputManager()); 96 95 } 97 96
Note: See TracChangeset
for help on using the changeset viewer.