diff options
| author | Andrew Donald Kennedy <grkvlt@apache.org> | 2010-08-13 16:16:16 +0000 |
|---|---|---|
| committer | Andrew Donald Kennedy <grkvlt@apache.org> | 2010-08-13 16:16:16 +0000 |
| commit | 28f390f7fc5e0d271b467bbf8c7bd94c02659562 (patch) | |
| tree | 17a2c7ef8725a3c5ef52b3dbf14da7ee250fd77f /java/systests/src | |
| parent | 48956072b60c7ef08b5fb5df5d91d5bb0d9e0f25 (diff) | |
| download | qpid-python-28f390f7fc5e0d271b467bbf8c7bd94c02659562.tar.gz | |
Tidy up various badly named tests
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@985259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests/src')
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/client/AMQTestConnection_0_10.java | 34 | ||||
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTransactedPublishTest.java (renamed from java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTrasactedPubilshTest.java) | 2 |
2 files changed, 35 insertions, 1 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/client/AMQTestConnection_0_10.java b/java/systests/src/main/java/org/apache/qpid/client/AMQTestConnection_0_10.java new file mode 100644 index 0000000000..09a03a17a0 --- /dev/null +++ b/java/systests/src/main/java/org/apache/qpid/client/AMQTestConnection_0_10.java @@ -0,0 +1,34 @@ +/* + * 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. + */ +package org.apache.qpid.client; + +import org.apache.qpid.transport.Connection; + +public class AMQTestConnection_0_10 extends AMQConnection +{ + public AMQTestConnection_0_10(String url) throws Exception + { + super(url); + } + + public Connection getConnection() + { + return((AMQConnectionDelegate_0_10)_delegate).getQpidConnection(); + } +} diff --git a/java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTrasactedPubilshTest.java b/java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTransactedPublishTest.java index 248042d2c4..3ec7937812 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTrasactedPubilshTest.java +++ b/java/systests/src/main/java/org/apache/qpid/test/unit/publish/DirtyTransactedPublishTest.java @@ -46,7 +46,7 @@ import java.util.concurrent.atomic.AtomicReference; * and asynchronous message delivery paths we receive the expected exceptions at * the expected time. */ -public class DirtyTrasactedPubilshTest extends FailoverBaseCase implements ConnectionListener +public class DirtyTransactedPublishTest extends FailoverBaseCase implements ConnectionListener { protected CountDownLatch _failoverCompleted = new CountDownLatch(1); |
