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/07/26 21:36:08 UTC

svn commit: r559952 - /activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp

Author: tabish
Date: Thu Jul 26 12:36:07 2007
New Revision: 559952

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

Implementing the Primitive Wrappers fully

Modified:
    activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp

Modified: activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp?view=diff&rev=559952&r1=559951&r2=559952
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp (original)
+++ activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/lang/BooleanTest.cpp Thu Jul 26 12:36:07 2007
@@ -39,4 +39,7 @@
     CPPUNIT_ASSERT( y1 == "true" );
     CPPUNIT_ASSERT( z1 == "false" );
 
+    Boolean b( true );
+    CPPUNIT_ASSERT( b.booleanValue() == true );
+
 }