12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
-
-
-
-
-
-
- #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") );
- }
-
- void testDipoleSource( void )
- {
- auto Obj = DipoleSource::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("DipoleSource") );
- }
-
- void testWireAntenna( void )
- {
- auto Obj = WireAntenna::NewSP();
- TS_ASSERT_EQUALS( Obj->GetName(), std::string("WireAntenna") );
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- };
|