Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 59206 invoked from network); 23 Dec 2008 22:55:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Dec 2008 22:55:27 -0000 Received: (qmail 73192 invoked by uid 500); 23 Dec 2008 22:55:27 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 73175 invoked by uid 500); 23 Dec 2008 22:55:27 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 73166 invoked by uid 99); 23 Dec 2008 22:55:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2008 14:55:27 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Dec 2008 22:55:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E0613238896C; Tue, 23 Dec 2008 14:54:59 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729165 - in /activemq/activemq-cpp/trunk/src/test: Makefile.am testRegistry.cpp Date: Tue, 23 Dec 2008 22:54:59 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081223225459.E0613238896C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Tue Dec 23 14:54:59 2008 New Revision: 729165 URL: http://svn.apache.org/viewvc?rev=729165&view=rev Log: Incorporate the completed URI class and Unit tests. Modified: activemq/activemq-cpp/trunk/src/test/Makefile.am activemq/activemq-cpp/trunk/src/test/testRegistry.cpp Modified: activemq/activemq-cpp/trunk/src/test/Makefile.am URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/test/Makefile.am?rev=729165&r1=729164&r2=729165&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/test/Makefile.am (original) +++ activemq/activemq-cpp/trunk/src/test/Makefile.am Tue Dec 23 14:54:59 2008 @@ -88,6 +88,7 @@ decaf/internal/nio/IntArrayBufferTest.cpp \ decaf/internal/nio/ShortArrayBufferTest.cpp \ decaf/internal/net/URIEncoderDecoderTest.cpp \ + decaf/internal/net/URIHelperTest.cpp \ decaf/lang/ByteTest.cpp \ decaf/lang/CharacterTest.cpp \ decaf/lang/BooleanTest.cpp \ @@ -206,6 +207,7 @@ decaf/internal/nio/IntArrayBufferTest.h \ decaf/internal/nio/ShortArrayBufferTest.h \ decaf/internal/net/URIEncoderDecoderTest.h \ + decaf/internal/net/URIHelperTest.h \ decaf/lang/ByteTest.h \ decaf/lang/CharacterTest.h \ decaf/lang/BooleanTest.h \ Modified: activemq/activemq-cpp/trunk/src/test/testRegistry.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/test/testRegistry.cpp?rev=729165&r1=729164&r2=729165&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/test/testRegistry.cpp (original) +++ activemq/activemq-cpp/trunk/src/test/testRegistry.cpp Tue Dec 23 14:54:59 2008 @@ -177,6 +177,8 @@ #include CPPUNIT_TEST_SUITE_REGISTRATION( decaf::internal::net::URIEncoderDecoderTest ); +#include +CPPUNIT_TEST_SUITE_REGISTRATION( decaf::internal::net::URIHelperTest ); #include CPPUNIT_TEST_SUITE_REGISTRATION( decaf::nio::BufferTest );