You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/08/02 22:27:07 UTC

svn commit: r562243 - in /activemq/activemq-cpp/trunk/src/decaf/src/test: Makefile.am testRegistry.cpp

Author: tabish
Date: Thu Aug  2 13:27:06 2007
New Revision: 562243

URL: http://svn.apache.org/viewvc?view=rev&rev=562243
Log:
http://issues.apache.org/activemq/browse/AMQCPP-103

Adding in more Types wrappers

Modified:
    activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am
    activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp

Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am?view=diff&rev=562243&r1=562242&r2=562243
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/test/Makefile.am Thu Aug  2 13:27:06 2007
@@ -16,6 +16,7 @@
 # ---------------------------------------------------------------------------
 
 cc_sources = \
+  decaf/lang/CharacterTest.cpp \
   decaf/lang/BooleanTest.cpp \
   decaf/lang/ShortTest.cpp \
   decaf/lang/IntegerTest.cpp \
@@ -45,6 +46,7 @@
   main.cpp
 
 h_sources = \
+  decaf/lang/CharacterTest.h \
   decaf/lang/BooleanTest.h \
   decaf/lang/ShortTest.h \
   decaf/lang/IntegerTest.h \

Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp?view=diff&rev=562243&r1=562242&r2=562243
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/test/testRegistry.cpp Thu Aug  2 13:27:06 2007
@@ -31,6 +31,8 @@
 #include <decaf/io/DataOutputStreamTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION( decaf::io::DataOutputStreamTest );
 
+#include <decaf/lang/CharacterTest.h>
+CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::CharacterTest );
 #include <decaf/lang/BooleanTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION( decaf::lang::BooleanTest );
 #include <decaf/lang/ExceptionTest.h>