123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* This file is part of Lemma, a geophysical modelling and inversion API.
- * More information is available at http://lemmasoftware.org
- */
-
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
- /**
- * @file
- * @date 06/16/2016 09:12:46 PM
- * @version $Id$
- * @author Trevor Irons (ti)
- * @email tirons@egi.utah.edu
- * @copyright Copyright (c) 2016, University of Utah
- * @copyright Copyright (c) 2016, Trevor Irons & Lemma Software, LLC
- */
-
- #include <cxxtest/TestSuite.h>
- #include <LemmaCore>
-
- using namespace Lemma;
-
- class MyTestSuite : public CxxTest::TestSuite
- {
- public:
-
- void testASCIIParser( void )
- {
- auto Obj = ASCIIParser::NewSP();
- //TS_ASSERT_THROWS_ANYTHING( auto Obj2 = Obj );
- auto Obj2 = ASCIIParser::DeSerialize(Obj->Serialize());
- TS_ASSERT_EQUALS( Obj->GetName(), Obj2->GetName() );
- }
-
-
- // void testCubicSplineInterpolator(void)
- // {
- // auto Obj = CubicSplineInterpolator::NewSP();
- // YAML::Node node = Obj->Serialize();
- // auto Obj2 = CubicSplineInterpolator::DeSerialize(node);
- // TS_ASSERT_EQUALS( Obj->GetName(), Obj2->GetName() );
- // }
-
- // /*
- // void testRectilinearGrid( void )
- // {
- // auto Obj = RectilinearGrid::NewSP();
- // YAML::Node node = Obj->Serialize();
- // auto Obj2 = RectilinearGrid::DeSerialize(node);
- // TS_ASSERT_EQUALS( Obj->GetName(), Obj2->GetName() );
- // }
- // */
-
-
- // /*
- // void testRectilinearGridReader( void )
- // {
- // auto Obj = RectilinearGridReader::NewSP();
- // TS_ASSERT_EQUALS( Obj->GetName(), std::string("RectilinearGridReader") );
- // }
- //
- // void testRectilinearGridVTKExporter( void )
- // {
- // auto Obj = RectilinearGridVTKExporter::NewSP();
- // TS_ASSERT_EQUALS( Obj->GetName(), std::string("RectilinearGridVTKExporter") );
- // }
- //
- // void testWindowFilter( void )
- // {
- // auto Obj = WindowFilter::NewSP();
- // TS_ASSERT_EQUALS( Obj->GetName(), std::string("WindowFilter") );
- // }
- // */
-
- };
|