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

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


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

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

Added: cs/cigma/trunk/tests/libcigma/ElementBlockTest.cpp
===================================================================
--- cs/cigma/trunk/tests/libcigma/ElementBlockTest.cpp	                        (rev 0)
+++ cs/cigma/trunk/tests/libcigma/ElementBlockTest.cpp	2008-10-15 09:08:01 UTC (rev 13058)
@@ -0,0 +1,9 @@
+#include "ElementBlockTest.h"
+using namespace libcigma;
+
+ElementBlockTest::ElementBlockTest() {}
+ElementBlockTest::~ElementBlockTest() {}
+
+void ElementBlockTest::test_eb_array()
+{
+}

Added: cs/cigma/trunk/tests/libcigma/ElementBlockTest.h
===================================================================
--- cs/cigma/trunk/tests/libcigma/ElementBlockTest.h	                        (rev 0)
+++ cs/cigma/trunk/tests/libcigma/ElementBlockTest.h	2008-10-15 09:08:01 UTC (rev 13058)
@@ -0,0 +1,24 @@
+#ifndef __ELEMENT_BLOCK_TEST_H__
+#define __ELEMENT_BLOCK_TEST_H__
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace libcigma
+{
+    class ElementBlockTest : public CPPUNIT_NS::TestFixture
+    {
+        CPPUNIT_TEST_SUITE(ElementBlockTest);
+        CPPUNIT_TEST(test_eb_array);
+        CPPUNIT_TEST_SUITE_END();
+
+    public:
+        ElementBlockTest();
+        ~ElementBlockTest();
+
+        void test_eb_array();
+    };
+};
+
+#endif



More information about the cig-commits mailing list