[cig-commits] r13062 - cs/cigma/trunk/tests/libcigma

luis at geodynamics.org luis at geodynamics.org
Wed Oct 15 02:08:07 PDT 2008


Author: luis
Date: 2008-10-15 02:08:07 -0700 (Wed, 15 Oct 2008)
New Revision: 13062

Added:
   cs/cigma/trunk/tests/libcigma/ReaderTest.cpp
   cs/cigma/trunk/tests/libcigma/ReaderTest.h
Log:
Test fixture for Reader classes

Added: cs/cigma/trunk/tests/libcigma/ReaderTest.cpp
===================================================================
--- cs/cigma/trunk/tests/libcigma/ReaderTest.cpp	                        (rev 0)
+++ cs/cigma/trunk/tests/libcigma/ReaderTest.cpp	2008-10-15 09:08:07 UTC (rev 13062)
@@ -0,0 +1,18 @@
+#include "ReaderTest.h"
+//#include <boost/filesystem.hpp>
+//#include <iostream>
+
+using namespace libcigma;
+
+ReaderTest::ReaderTest() {}
+ReaderTest::~ReaderTest() {}
+
+void ReaderTest::test_something()
+{
+    /*
+    using namespace std;
+    namespace fs = boost::filesystem;
+    fs::path full_path(fs::current_path());
+    cout << endl << full_path.string() << endl;
+    */
+}

Added: cs/cigma/trunk/tests/libcigma/ReaderTest.h
===================================================================
--- cs/cigma/trunk/tests/libcigma/ReaderTest.h	                        (rev 0)
+++ cs/cigma/trunk/tests/libcigma/ReaderTest.h	2008-10-15 09:08:07 UTC (rev 13062)
@@ -0,0 +1,25 @@
+#ifndef __READER_TEST_H__
+#define __READER_TEST_H__
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace libcigma
+{
+    class ReaderTest : public CPPUNIT_NS::TestFixture
+    {
+        CPPUNIT_TEST_SUITE(ReaderTest);
+        CPPUNIT_TEST(test_something);
+        CPPUNIT_TEST_SUITE_END();
+
+    public:
+        ReaderTest();
+        virtual ~ReaderTest();
+
+        void test_something();
+
+    };
+};
+
+#endif



More information about the cig-commits mailing list