/* * IsInsideDomain_FillPredicateUnitTest.hpp * * Created on: Jan 19, 2012 * Author: heber */ #ifndef ISINSIDEDOMAIN_FILLPREDICATEUNITTEST_HPP_ #define ISINSIDEDOMAIN_FILLPREDICATEUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class Box; class RealSpaceMatrix; class FillPredicate; /********************************************** Test classes **************************************/ class IsInsideDomain_FillPredicateTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( IsInsideDomain_FillPredicateTest) ; CPPUNIT_TEST ( operatorTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void operatorTest(); private: RealSpaceMatrix *M; Box *domain; FillPredicate *predicate; }; #endif /* ISINSIDEDOMAIN_FILLPREDICATEUNITTEST_HPP_ */