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 2013/03/16 22:14:12 UTC

svn commit: r1457307 [6/6] - in /activemq/activemq-cpp/trunk/activemq-cpp/src: main/ main/decaf/internal/ main/decaf/internal/net/ main/decaf/internal/security/ main/decaf/internal/security/provider/ main/decaf/internal/security/provider/crypto/ main/d...

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/decaf/util/UUIDTest.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/decaf/util/UUIDTest.h?rev=1457307&r1=1457306&r2=1457307&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test/decaf/util/UUIDTest.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/decaf/util/UUIDTest.h Sat Mar 16 21:14:01 2013
@@ -27,7 +27,22 @@ namespace util{
     class UUIDTest : public CppUnit::TestFixture {
 
         CPPUNIT_TEST_SUITE( UUIDTest );
-        CPPUNIT_TEST( test );
+        CPPUNIT_TEST( testConstructor1 );
+        CPPUNIT_TEST( testGetLeastSignificantBits );
+        CPPUNIT_TEST( testGetMostSignificantBits );
+        CPPUNIT_TEST( testVersion );
+        CPPUNIT_TEST( testVariant );
+        CPPUNIT_TEST( testTimestamp );
+        CPPUNIT_TEST( testClockSequence );
+        CPPUNIT_TEST( testNode );
+        CPPUNIT_TEST( testCompareTo );
+        CPPUNIT_TEST( testHashCode );
+        CPPUNIT_TEST( testEquals );
+        CPPUNIT_TEST( testToString );
+        CPPUNIT_TEST( testRandomUUID );
+        CPPUNIT_TEST( testNameUUIDFromBytes );
+        CPPUNIT_TEST( testFromString );
+        CPPUNIT_TEST( testFromStringStringException );
         CPPUNIT_TEST_SUITE_END();
 
     public:
@@ -35,7 +50,22 @@ namespace util{
         UUIDTest();
         virtual ~UUIDTest() {}
 
-        virtual void test();
+        void testConstructor1();
+        void testGetLeastSignificantBits();
+        void testGetMostSignificantBits();
+        void testVersion();
+        void testVariant();
+        void testTimestamp();
+        void testClockSequence();
+        void testNode();
+        void testCompareTo();
+        void testHashCode();
+        void testEquals();
+        void testToString();
+        void testRandomUUID();
+        void testNameUUIDFromBytes();
+        void testFromString();
+        void testFromStringStringException();
 
     };
 

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/testRegistry.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/testRegistry.cpp?rev=1457307&r1=1457306&r2=1457307&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test/testRegistry.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/testRegistry.cpp Sat Mar 16 21:14:01 2013
@@ -382,6 +382,8 @@ CPPUNIT_TEST_SUITE_REGISTRATION( decaf::
 
 #include <decaf/security/SecureRandomTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION( decaf::security::SecureRandomTest );
+#include <decaf/security/MessageDigestTest.h>
+CPPUNIT_TEST_SUITE_REGISTRATION( decaf::security::MessageDigestTest );
 
 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 ////// Marshaler Tests