diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test-assetFactory.cpp | 2 | ||||
-rw-r--r-- | test/test-collection.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/test-assetFactory.cpp b/test/test-assetFactory.cpp index 03319da..72f13b3 100644 --- a/test/test-assetFactory.cpp +++ b/test/test-assetFactory.cpp @@ -71,7 +71,7 @@ public: sceneRenderer.render(*this); } - Collection<const Renderable> objects; + SharedCollection<const Renderable> objects; private: SceneRenderer sceneRenderer; diff --git a/test/test-collection.cpp b/test/test-collection.cpp index 00204fc..00298bb 100644 --- a/test/test-collection.cpp +++ b/test/test-collection.cpp @@ -34,10 +34,10 @@ public: } }; -using TestCollection = Collection<Base>; +using TestCollection = SharedCollection<Base>; -BOOST_TEST_DONT_PRINT_LOG_VALUE(Collection<Base>::Objects::const_iterator) -BOOST_TEST_DONT_PRINT_LOG_VALUE(Collection<Base>::Objects::const_reverse_iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestCollection::Objects::const_iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestCollection::Objects::const_reverse_iterator) BOOST_FIXTURE_TEST_SUITE(tc, TestCollection) |