File: ModelMountTestCase.h

package info (click to toggle)
ember 0.6.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 21,372 kB
  • sloc: cpp: 106,397; sh: 10,156; xml: 1,473; makefile: 915; ansic: 530; objc: 245
file content (14 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <cppunit/extensions/HelperMacros.h>

namespace Ember {
	class ModelMountTestCase : public CppUnit::TestFixture {
		CPPUNIT_TEST_SUITE(ModelMountTestCase);
		CPPUNIT_TEST(testModelMountScaling);
		CPPUNIT_TEST_SUITE_END();

	public:
		void testModelMountScaling();


	};
}