// -*- C++ -*- // // ---------------------------------------------------------------------- // // Brad T. Aagaard // U.S. Geological Survey // // {LicenseText} // // ---------------------------------------------------------------------- // /** * @file unittests/libtests/bc/TestDirichletLine2.hh * * @brief C++ TestDirichlet object. * * C++ unit testing for Dirichlet for mesh with 1-D line cells. */ #if !defined(pylith_bc_testdirichletline2_hh) #define pylith_bc_testdirichletline2_hh #include "TestDirichlet.hh" // ISA TestDirichlet /// Namespace for pylith package namespace pylith { namespace bc { class TestDirichletLine2; } // bc } // pylith /// C++ unit testing for Dirichlet for mesh with 1-D line cells. class pylith::bc::TestDirichletLine2 : public TestDirichlet { // class TestDirichlet // CPPUNIT TEST SUITE ///////////////////////////////////////////////// CPPUNIT_TEST_SUITE( TestDirichletLine2 ); CPPUNIT_TEST( testInitialize ); CPPUNIT_TEST( testSetConstraintSizes ); CPPUNIT_TEST( testSetConstraints ); CPPUNIT_TEST( testSetField ); CPPUNIT_TEST_SUITE_END(); // PUBLIC METHODS ///////////////////////////////////////////////////// public : /// Setup testing data. void setUp(void); }; // class TestDirichletLine2 #endif // pylith_bc_dirichletline2_hh // End of file