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