Author: tabish Date: Wed Jan 31 17:11:06 2007 New Revision: 502064 URL: http://svn.apache.org/viewvc?view=rev&rev=502064 Log: http://issues.apache.org/activemq/browse/AMQCPP-30
Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp (with props) activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h (with props) activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp (with props) activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h (with props) Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/Makefile.am Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/test/Makefile.am URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/Makefile.am?view=diff&rev=502064&r1=502063&r2=502064 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/Makefile.am (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/Makefile.am Wed Jan 31 17:11:06 2007 @@ -42,6 +42,7 @@ activemq/connector/stomp/StompConnectorTest.cpp \ activemq/connector/stomp/StompFrameTest.cpp \ activemq/connector/stomp/StompSessionManagerTest.cpp \ + activemq/connector/openwire/OpenWireFormatTest.cpp \ activemq/connector/openwire/marshal/PrimitiveMapMarshallerTest.cpp \ activemq/connector/openwire/marshal/BaseDataStreamMarshallerTest.cpp \ activemq/connector/openwire/utils/HexTableTest.cpp \ @@ -53,6 +54,7 @@ activemq/connector/openwire/commands/ActiveMQQueueTest.cpp \ activemq/connector/openwire/commands/ActiveMQTempTopicTest.cpp \ activemq/connector/openwire/commands/ActiveMQTempQueueTest.cpp \ + activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp \ activemq/core/ActiveMQConnectionFactoryTest.cpp \ activemq/core/ActiveMQConnectionTest.cpp \ activemq/core/ActiveMQDestinationTest.cpp \ Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp?view=auto&rev=502064 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp (added) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp Wed Jan 31 17:11:06 2007 @@ -0,0 +1,38 @@ +/* + * 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 "OpenWireFormatTest.h" + +CPPUNIT_TEST_SUITE_REGISTRATION( activemq::connector::openwire::OpenWireFormatTest ); + +#include <activemq/util/SimpleProperties.h> +#include <activemq/connector/openwire/OpenWireFormat.h> + +using namespace std; +using namespace activemq; +using namespace activemq::util; +using namespace activemq::io; +using namespace activemq::exceptions; +using namespace activemq::connector; +using namespace activemq::connector::openwire; + +//////////////////////////////////////////////////////////////////////////////// +void OpenWireFormatTest::test() +{ + SimpleProperties properties; + //OpenWireFormat myWireFormat( properties ); +} Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.cpp ------------------------------------------------------------------------------ svn:eol-style = native Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h?view=auto&rev=502064 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h (added) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h Wed Jan 31 17:11:06 2007 @@ -0,0 +1,45 @@ +/* + * 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 _ACTIVEMQ_CONNECTOR_OPENWIRE_OPENWIREFORMATTEST_H_ +#define _ACTIVEMQ_CONNECTOR_OPENWIRE_OPENWIREFORMATTEST_H_ + +#include <cppunit/TestFixture.h> +#include <cppunit/extensions/HelperMacros.h> + +namespace activemq{ +namespace connector{ +namespace openwire{ + + class OpenWireFormatTest : public CppUnit::TestFixture { + + CPPUNIT_TEST_SUITE( OpenWireFormatTest ); + CPPUNIT_TEST( test ); + CPPUNIT_TEST_SUITE_END(); + + public: + + OpenWireFormatTest() {} + virtual ~OpenWireFormatTest() {} + + virtual void test(); + + }; + +}}} + +#endif /*_ACTIVEMQ_CONNECTOR_OPENWIRE_OPENWIREFORMATTEST_H_*/ Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/OpenWireFormatTest.h ------------------------------------------------------------------------------ svn:eol-style = native Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp?view=auto&rev=502064 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp (added) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp Wed Jan 31 17:11:06 2007 @@ -0,0 +1,36 @@ +/* + * 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 "ActiveMQTextMessageTest.h" + +CPPUNIT_TEST_SUITE_REGISTRATION( activemq::connector::openwire::commands::ActiveMQTextMessageTest ); + +#include <activemq/connector/openwire/commands/ActiveMQTextMessage.h> + +using namespace std; +using namespace activemq; +using namespace activemq::util; +using namespace activemq::connector; +using namespace activemq::connector::openwire; +using namespace activemq::connector::openwire::marshal; +using namespace activemq::connector::openwire::commands; + +//////////////////////////////////////////////////////////////////////////////// +void ActiveMQTextMessageTest::test() +{ + //ActiveMQTextMessage myMessage; +} Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.cpp ------------------------------------------------------------------------------ svn:eol-style = native Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h?view=auto&rev=502064 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h (added) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h Wed Jan 31 17:11:06 2007 @@ -0,0 +1,46 @@ +/* + * 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 _ACTIVEMQ_CONNECTOR_OPENWORE_COMMANDS_ACTIVEMQTEXTMESSAGETEST_H_ +#define _ACTIVEMQ_CONNECTOR_OPENWORE_COMMANDS_ACTIVEMQTEXTMESSAGETEST_H_ + +#include <cppunit/TestFixture.h> +#include <cppunit/extensions/HelperMacros.h> + +namespace activemq{ +namespace connector{ +namespace openwire{ +namespace commands{ + + class ActiveMQTextMessageTest : public CppUnit::TestFixture { + + CPPUNIT_TEST_SUITE( ActiveMQTextMessageTest ); + CPPUNIT_TEST( test ); + CPPUNIT_TEST_SUITE_END(); + + public: + + ActiveMQTextMessageTest() {} + virtual ~ActiveMQTextMessageTest() {} + + void test(); + + }; + +}}}} + +#endif /*_ACTIVEMQ_CONNECTOR_OPENWORE_COMMANDS_ACTIVEMQTEXTMESSAGETEST_H_*/ Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/connector/openwire/commands/ActiveMQTextMessageTest.h ------------------------------------------------------------------------------ svn:eol-style = native