12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
-
-
-
-
-
- #include <cxxtest/TestSuite.h>
- #include <LemmaCore>
- #include <FDEM1D>
-
- using namespace Lemma;
-
- class MyTestSuite : public CxxTest::TestSuite
- {
- public:
-
- void testLayeredEarthEM( void )
- {
- auto Obj = LayeredEarthEM::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("LayeredEarthEM") );
- }
-
- void testFieldPoints( void )
- {
- auto Obj = FieldPoints::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("FieldPoints") );
- }
-
- };
|