diff options
author | Alan Conway <aconway@apache.org> | 2006-10-16 14:12:49 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-10-16 14:12:49 +0000 |
commit | b90ceab30a9f2040a868e76c90af47f09b4cbbb2 (patch) | |
tree | e7718b521cb30403fed1881b3154e88666bdaa0f /cpp/test | |
parent | 8a6ab3aa61d441b9210c05c84dc9998acfc38737 (diff) | |
download | qpid-python-b90ceab30a9f2040a868e76c90af47f09b4cbbb2.tar.gz |
Renamed unit tests to follow naming conventions, fixed some #include inconsistencies.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@464503 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/unit/qpid/broker/ChannelTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ExchangeTest.cpp | 8 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp | 6 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/MessageTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/QueueRegistryTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/QueueTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/RouterTest.cpp | 10 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/TopicExchangeTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ValueTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/BodyHandlerTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/FieldTableTest.cpp (renamed from cpp/test/unit/qpid/framing/field_table_test.cpp) | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/FramingTest.cpp (renamed from cpp/test/unit/qpid/framing/framing_test.cpp) | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/HeaderTest.cpp (renamed from cpp/test/unit/qpid/framing/header_test.cpp) | 2 |
13 files changed, 26 insertions, 26 deletions
diff --git a/cpp/test/unit/qpid/broker/ChannelTest.cpp b/cpp/test/unit/qpid/broker/ChannelTest.cpp index 8d54208f77..2197c1724a 100644 --- a/cpp/test/unit/qpid/broker/ChannelTest.cpp +++ b/cpp/test/unit/qpid/broker/ChannelTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "../../src/qpid/broker/Channel.h" -#include "../../src/qpid/broker/Message.h" +#include "qpid/broker/Channel.h" +#include "qpid/broker/Message.h" #include <qpid_test_plugin.h> #include <iostream> #include <memory> diff --git a/cpp/test/unit/qpid/broker/ExchangeTest.cpp b/cpp/test/unit/qpid/broker/ExchangeTest.cpp index 3d21cb66f0..adebc87422 100644 --- a/cpp/test/unit/qpid/broker/ExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/ExchangeTest.cpp @@ -16,10 +16,10 @@ * */ -#include "../../src/qpid/broker/DirectExchange.h" -#include "../../src/qpid/broker/Exchange.h" -#include "../../src/qpid/broker/Queue.h" -#include "../../src/qpid/broker/TopicExchange.h" +#include "qpid/broker/DirectExchange.h" +#include "qpid/broker/Exchange.h" +#include "qpid/broker/Queue.h" +#include "qpid/broker/TopicExchange.h" #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp b/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp index d8fe71350e..a57c1d8800 100644 --- a/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp @@ -16,9 +16,9 @@ * */ -#include "../../src/qpid/broker/HeadersExchange.h" -#include "../../src/qpid/framing/FieldTable.h" -#include "../../src/qpid/framing/Value.h" +#include "qpid/broker/HeadersExchange.h" +#include "qpid/framing/FieldTable.h" +#include "qpid/framing/Value.h" #include <qpid_test_plugin.h> using namespace qpid::broker; diff --git a/cpp/test/unit/qpid/broker/MessageTest.cpp b/cpp/test/unit/qpid/broker/MessageTest.cpp index f6586f721a..210cd63934 100644 --- a/cpp/test/unit/qpid/broker/MessageTest.cpp +++ b/cpp/test/unit/qpid/broker/MessageTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "../../src/qpid/concurrent/APRBase.h" -#include "../../src/qpid/broker/Message.h" +#include "qpid/concurrent/APRBase.h" +#include "qpid/broker/Message.h" #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp b/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp index 96fbc88069..59034fb7c8 100644 --- a/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp +++ b/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp @@ -1,4 +1,4 @@ -#include "../../src/qpid/broker/QueueRegistry.h" +#include "qpid/broker/QueueRegistry.h" #include <qpid_test_plugin.h> #include <string> diff --git a/cpp/test/unit/qpid/broker/QueueTest.cpp b/cpp/test/unit/qpid/broker/QueueTest.cpp index fa6344c265..5b06cb93ca 100644 --- a/cpp/test/unit/qpid/broker/QueueTest.cpp +++ b/cpp/test/unit/qpid/broker/QueueTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "../../src/qpid/broker/Queue.h" -#include "../../src/qpid/broker/QueueRegistry.h" +#include "qpid/broker/Queue.h" +#include "qpid/broker/QueueRegistry.h" #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/RouterTest.cpp b/cpp/test/unit/qpid/broker/RouterTest.cpp index 7b77162905..f2c9f27abd 100644 --- a/cpp/test/unit/qpid/broker/RouterTest.cpp +++ b/cpp/test/unit/qpid/broker/RouterTest.cpp @@ -15,11 +15,11 @@ * limitations under the License. * */ -#include "../../src/qpid/broker/Channel.h" -#include "../../src/qpid/broker/Exchange.h" -#include "../../src/qpid/broker/ExchangeRegistry.h" -#include "../../src/qpid/broker/Message.h" -#include "../../src/qpid/broker/Router.h" +#include "qpid/broker/Channel.h" +#include "qpid/broker/Exchange.h" +#include "qpid/broker/ExchangeRegistry.h" +#include "qpid/broker/Message.h" +#include "qpid/broker/Router.h" #include <qpid_test_plugin.h> #include <iostream> #include <memory> diff --git a/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp b/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp index 4066a4709f..8d7903c4ac 100644 --- a/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp @@ -1,4 +1,4 @@ -#include "../../src/qpid/broker/TopicExchange.h" +#include "qpid/broker/TopicExchange.h" #include <qpid_test_plugin.h> using namespace qpid::broker; diff --git a/cpp/test/unit/qpid/broker/ValueTest.cpp b/cpp/test/unit/qpid/broker/ValueTest.cpp index 89444c38cf..2cb2563b46 100644 --- a/cpp/test/unit/qpid/broker/ValueTest.cpp +++ b/cpp/test/unit/qpid/broker/ValueTest.cpp @@ -1,4 +1,4 @@ -#include "../../src/qpid/framing/Value.h" +#include "qpid/framing/Value.h" #include <qpid_test_plugin.h> using namespace qpid::framing; diff --git a/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp b/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp index 6b011743c0..d6edf37d51 100644 --- a/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp +++ b/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp @@ -16,7 +16,7 @@ * */ #include <iostream> -#include "../../src/qpid/framing/amqp_framing.h" +#include "qpid/framing/amqp_framing.h" #include "qpid_test_plugin.h" using namespace qpid::framing; diff --git a/cpp/test/unit/qpid/framing/field_table_test.cpp b/cpp/test/unit/qpid/framing/FieldTableTest.cpp index 8f2fe61611..b11addfd0e 100644 --- a/cpp/test/unit/qpid/framing/field_table_test.cpp +++ b/cpp/test/unit/qpid/framing/FieldTableTest.cpp @@ -16,7 +16,7 @@ * */ #include <iostream> -#include "../../src/qpid/framing/amqp_framing.h" +#include "qpid/framing/amqp_framing.h" #include <qpid_test_plugin.h> using namespace qpid::framing; diff --git a/cpp/test/unit/qpid/framing/framing_test.cpp b/cpp/test/unit/qpid/framing/FramingTest.cpp index 40ce3d97ed..950d1e045a 100644 --- a/cpp/test/unit/qpid/framing/framing_test.cpp +++ b/cpp/test/unit/qpid/framing/FramingTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "../../src/qpid/framing/amqp_framing.h" -#include "ConnectionRedirectBody.h" +#include "qpid/framing/amqp_framing.h" +#include "qpid/framing/ConnectionRedirectBody.h" #include <iostream> #include <sstream> #include <qpid_test_plugin.h> diff --git a/cpp/test/unit/qpid/framing/header_test.cpp b/cpp/test/unit/qpid/framing/HeaderTest.cpp index 9268c54272..cf0d9fe5bd 100644 --- a/cpp/test/unit/qpid/framing/header_test.cpp +++ b/cpp/test/unit/qpid/framing/HeaderTest.cpp @@ -16,7 +16,7 @@ * */ #include <iostream> -#include "../../src/qpid/framing/amqp_framing.h" +#include "qpid/framing/amqp_framing.h" #include <qpid_test_plugin.h> using namespace qpid::framing; |