[Avida-SVN] r1218 - in extras: . source/testsuites source/tools

avidaedward at myxo.css.msu.edu avidaedward at myxo.css.msu.edu
Sat Jan 27 22:16:37 PST 2007


Author: avidaedward
Date: 2007-01-28 01:16:37 -0500 (Sun, 28 Jan 2007)
New Revision: 1218

Added:
   extras/source/tools/cTestSettings.cpp
   extras/source/tools/cTestSettings.h
Modified:
   extras/
   extras/SConscript
   extras/source/testsuites/nTestSettings.cpp
Log:
 r1184 at clearly:  kaben | 2006-12-25 00:48:24 -0500
 Added cpp files for cTestSettings class.



Property changes on: extras
___________________________________________________________________
Name: svk:merge
   - 079b078a-dbed-46b9-b3da-37668d4295ca:/avida/local/extras:1183
   + 079b078a-dbed-46b9-b3da-37668d4295ca:/avida/local/extras:1184

Modified: extras/SConscript
===================================================================
--- extras/SConscript	2007-01-28 06:16:33 UTC (rev 1217)
+++ extras/SConscript	2007-01-28 06:16:37 UTC (rev 1218)
@@ -55,11 +55,13 @@
   'source/tools/cConsoleCatcher.cpp',
   'source/tools/cTestDriver.cpp',
   'source/tools/cTestLib.cpp',
+  'source/tools/cTestSettings.cpp',
 ]
 tools_incs = [
   'source/tools/cConsoleCatcher.h',
   'source/tools/cTestDriver.h',
   'source/tools/cTestLib.h',
+  'source/tools/cTestSettings.h',
   'source/tools/lightweight_test.h',
 ]
 e.Library('extra_tools', tools_srcs)

Modified: extras/source/testsuites/nTestSettings.cpp
===================================================================
--- extras/source/testsuites/nTestSettings.cpp	2007-01-28 06:16:33 UTC (rev 1217)
+++ extras/source/testsuites/nTestSettings.cpp	2007-01-28 06:16:37 UTC (rev 1218)
@@ -1,4 +1,4 @@
-//#include "cTestSettings.h"
+#include "cTestSettings.h"
 
 #include "cTestLib.h"
 
@@ -21,7 +21,16 @@
     cAddTestSuite t("cTestSettings_Brainstorm_HelloWorld", test);
   }
 
+  /* cTestSettings_Brainstorm_ClassDesign {{{2 */
+  namespace Brainstorm_ClassDesign {
+    void test(){
+      cout << "XXX This is a test stub. It needs filling-in. @kgn" << endl;
+      TEST(true);
+    }
+    cAddTestSuite t("cTestSettings_Brainstorm_ClassDesign", test);
+  }
 
+
 /* Unit Tests. {{{1 */
   /* cTestSettings_UnitTest_HelloWorld {{{2 */
   namespace UnitTest_HelloWorld {

Added: extras/source/tools/cTestSettings.cpp
===================================================================
--- extras/source/tools/cTestSettings.cpp	2007-01-28 06:16:33 UTC (rev 1217)
+++ extras/source/tools/cTestSettings.cpp	2007-01-28 06:16:37 UTC (rev 1218)
@@ -0,0 +1 @@
+#include "cTestSettings.h"

Added: extras/source/tools/cTestSettings.h
===================================================================
--- extras/source/tools/cTestSettings.h	2007-01-28 06:16:33 UTC (rev 1217)
+++ extras/source/tools/cTestSettings.h	2007-01-28 06:16:37 UTC (rev 1218)
@@ -0,0 +1,14 @@
+#ifndef cTestLib_h
+#define cTestLib_h
+
+#ifndef cString_h
+#include "cString.h"
+#endif
+#ifndef tDictionary_h
+#include "tDictionary.h"
+#endif
+
+struct cTestSettings {
+};
+
+#endif




More information about the Avida-cvs mailing list