123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
-
-
-
-
-
-
- #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 testLayeredEarthEMReader( void )
- {
- auto Obj = LayeredEarthEMReader::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("LayeredEarthEMReader") );
- }
-
- void testFieldPoints( void )
- {
- auto Obj = FieldPoints::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("FieldPoints") );
- }
-
- void testWireAntenna( void )
- {
- auto Obj = WireAntenna::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("WireAntenna") );
- }
-
- void testCircularLoop( void )
- {
- auto Obj = CircularLoop::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("CircularLoop") );
- }
-
- void testPolygonalWireAntenna( void )
- {
- auto Obj = PolygonalWireAntenna::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("PolygonalWireAntenna") );
- }
-
- void testDipoleSource( void )
- {
- auto Obj = DipoleSource::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("DipoleSource") );
- }
-
- void testEMEarth1D( void )
- {
- auto Obj = EMEarth1D::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("EMEarth1D") );
- }
-
- void testAEMSurvey( void )
- {
- auto Obj = AEMSurvey::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("AEMSurvey") );
- }
-
- void testAEMSurveyReader( void )
- {
- auto Obj = AEMSurveyReader::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("AEMSurveyReader") );
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- };
|