Date: Friday, December 16, 2005 @ 17:31:16
  Author: marc
    Path: /cvsroot/carob/carob/test

Modified: TestBeginCommitRollback.hpp (1.3 -> 1.4) TestDriverResultSet.hpp
          (1.2 -> 1.3) TestExecReadRequest.hpp (1.5 -> 1.6)
          TestExecWriteRequest.hpp (1.5 -> 1.6) TestOnValidConnection.cpp
          (1.5 -> 1.6) TestOnValidConnection.hpp (1.4 -> 1.5)
          TestStatement.hpp (1.4 -> 1.5)

Renamed class TestOnValidConnection to ConnectionSetup


-----------------------------+
 TestBeginCommitRollback.hpp |    2 +-
 TestDriverResultSet.hpp     |    2 +-
 TestExecReadRequest.hpp     |    2 +-
 TestExecWriteRequest.hpp    |    2 +-
 TestOnValidConnection.cpp   |    4 ++--
 TestOnValidConnection.hpp   |    2 +-
 TestStatement.hpp           |    2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)


Index: carob/test/TestBeginCommitRollback.hpp
diff -u carob/test/TestBeginCommitRollback.hpp:1.3 
carob/test/TestBeginCommitRollback.hpp:1.4
--- carob/test/TestBeginCommitRollback.hpp:1.3  Fri Dec  2 15:53:07 2005
+++ carob/test/TestBeginCommitRollback.hpp      Fri Dec 16 17:31:16 2005
@@ -30,7 +30,7 @@
  * Runs read and write requests inside transactions.
  * A controller *MUST* run locally for test success !!!
  */
-class TestBeginCommitRollback : public TestOnValidConnection
+class TestBeginCommitRollback : public ConnectionSetup
 {
 public:
   /** Suite of tests to be run */
Index: carob/test/TestDriverResultSet.hpp
diff -u carob/test/TestDriverResultSet.hpp:1.2 
carob/test/TestDriverResultSet.hpp:1.3
--- carob/test/TestDriverResultSet.hpp:1.2      Thu Dec 15 15:55:57 2005
+++ carob/test/TestDriverResultSet.hpp  Fri Dec 16 17:31:16 2005
@@ -29,7 +29,7 @@
  * This is basically a copy of exec read and exec write commands testing
  * A controller *MUST* run locally for test success !!!
  */
-class TestDriverResultSet : public TestOnValidConnection
+class TestDriverResultSet : public ConnectionSetup
 {
 public:
   /** Suite of tests to be run */
Index: carob/test/TestExecReadRequest.hpp
diff -u carob/test/TestExecReadRequest.hpp:1.5 
carob/test/TestExecReadRequest.hpp:1.6
--- carob/test/TestExecReadRequest.hpp:1.5      Fri Dec  2 15:53:07 2005
+++ carob/test/TestExecReadRequest.hpp  Fri Dec 16 17:31:16 2005
@@ -30,7 +30,7 @@
  * correct request and displays the 50 first rows.
  * A controller *MUST* run locally for test success !!!
  */
-class TestExecReadRequest : public TestOnValidConnection
+class TestExecReadRequest : public ConnectionSetup
 {
 public:
   /** Suite of tests to be run */
Index: carob/test/TestExecWriteRequest.hpp
diff -u carob/test/TestExecWriteRequest.hpp:1.5 
carob/test/TestExecWriteRequest.hpp:1.6
--- carob/test/TestExecWriteRequest.hpp:1.5     Fri Dec  2 15:53:07 2005
+++ carob/test/TestExecWriteRequest.hpp Fri Dec 16 17:31:16 2005
@@ -30,7 +30,7 @@
  * correct request and finally a correct request played 1000 times
  * A controller *MUST* run locally for test success !!!
  */
-class TestExecWriteRequest : public TestOnValidConnection
+class TestExecWriteRequest : public ConnectionSetup
 {
 public:
   /** Suite of tests to be run */
Index: carob/test/TestOnValidConnection.cpp
diff -u carob/test/TestOnValidConnection.cpp:1.5 
carob/test/TestOnValidConnection.cpp:1.6
--- carob/test/TestOnValidConnection.cpp:1.5    Fri Dec  2 15:53:07 2005
+++ carob/test/TestOnValidConnection.cpp        Fri Dec 16 17:31:16 2005
@@ -29,7 +29,7 @@
 
 using namespace CarobNS;
 
-void TestOnValidConnection::setUp()
+void ConnectionSetup::setUp()
 {
   wstring fctName(L"TestExecReadRequest::setUp");
   ConnectionPool& connectionPool = ConnectionPool::getInstance();
@@ -42,7 +42,7 @@
     connectionPtr = connectionPool.connectToController(connectionPrms);
 }
 
-void TestOnValidConnection::tearDown()
+void ConnectionSetup::tearDown()
 {
   if (connectionPtr)
     delete connectionPtr;
Index: carob/test/TestOnValidConnection.hpp
diff -u carob/test/TestOnValidConnection.hpp:1.4 
carob/test/TestOnValidConnection.hpp:1.5
--- carob/test/TestOnValidConnection.hpp:1.4    Fri Dec  2 15:53:07 2005
+++ carob/test/TestOnValidConnection.hpp        Fri Dec 16 17:31:16 2005
@@ -37,7 +37,7 @@
  * get rid of connection aspects. No testing is done here !
  * A controller *MUST* run locally for test success !!!
  */
-class TestOnValidConnection : CppUnit::TestFixture
+class ConnectionSetup : CppUnit::TestFixture
 {
 public:
 
Index: carob/test/TestStatement.hpp
diff -u carob/test/TestStatement.hpp:1.4 carob/test/TestStatement.hpp:1.5
--- carob/test/TestStatement.hpp:1.4    Thu Dec  8 15:19:41 2005
+++ carob/test/TestStatement.hpp        Fri Dec 16 17:31:16 2005
@@ -29,7 +29,7 @@
  * This is basically a copy of exec read and exec write commands testing
  * A controller *MUST* run locally for test success !!!
  */
-class TestStatement : public TestOnValidConnection
+class TestStatement : public ConnectionSetup
 {
 public:
   /** Suite of tests to be run */

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to