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/05 23:32:58 UTC

svn commit: r562969 - in /activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util: UUIDTest.cpp UUIDTest.h

Author: tabish
Date: Sun Aug  5 14:32:56 2007
New Revision: 562969

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

Working on the UUID impl. (adding test case)

Added:
    activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.cpp
    activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.h

Added: activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.cpp?view=auto&rev=562969
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.cpp (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.cpp Sun Aug  5 14:32:56 2007
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "UUIDTest.h"
+
+#include <decaf/util/UUID.h>
+
+using namespace decaf;
+using namespace decaf::util;
+
+////////////////////////////////////////////////////////////////////////////////
+UUIDTest::UUIDTest() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+void UUIDTest::test() {
+}

Added: activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.h?view=auto&rev=562969
==============================================================================
--- activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.h (added)
+++ activemq/activemq-cpp/trunk/src/decaf/src/test/decaf/util/UUIDTest.h Sun Aug  5 14:32:56 2007
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _DECAF_UTIL_UUIDTEST_H_
+#define _DECAF_UTIL_UUIDTEST_H_
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+namespace decaf{
+namespace util{
+
+    class UUIDTest : public CppUnit::TestFixture {
+
+        CPPUNIT_TEST_SUITE( UUIDTest );
+        CPPUNIT_TEST( test );
+        CPPUNIT_TEST_SUITE_END();
+
+    public:
+
+        UUIDTest();
+        virtual ~UUIDTest() {}
+
+        virtual void test();
+
+    };
+
+}}
+
+#endif /*_DECAF_UTIL_UUIDTEST_H_*/