Browse Source

SceneGraph: minor renaming in ObjectTest.

pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
4a561dd923
  1. 4
      src/SceneGraph/Test/ObjectTest.cpp
  2. 2
      src/SceneGraph/Test/ObjectTest.h

4
src/SceneGraph/Test/ObjectTest.cpp

@ -35,7 +35,7 @@ ObjectTest::ObjectTest() {
&ObjectTest::scene, &ObjectTest::scene,
&ObjectTest::absoluteTransformation, &ObjectTest::absoluteTransformation,
&ObjectTest::transformations, &ObjectTest::transformations,
&ObjectTest::caching); &ObjectTest::setClean);
} }
void ObjectTest::parenting() { void ObjectTest::parenting() {
@ -168,7 +168,7 @@ void ObjectTest::transformations() {
CORRADE_COMPARE(o.str(), "SceneGraph::Object::transformations(): the objects are not part of the same tree\n"); CORRADE_COMPARE(o.str(), "SceneGraph::Object::transformations(): the objects are not part of the same tree\n");
} }
void ObjectTest::caching() { void ObjectTest::setClean() {
Scene3D scene; Scene3D scene;
class CachingFeature: public AbstractFeature<3, GLfloat> { class CachingFeature: public AbstractFeature<3, GLfloat> {

2
src/SceneGraph/Test/ObjectTest.h

@ -27,7 +27,7 @@ class ObjectTest: public Corrade::TestSuite::Tester<ObjectTest> {
void scene(); void scene();
void absoluteTransformation(); void absoluteTransformation();
void transformations(); void transformations();
void caching(); void setClean();
}; };
}}} }}}

Loading…
Cancel
Save