summaryrefslogtreecommitdiff
path: root/java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java b/java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java
index 74c14ee6c5..a041c0b838 100644
--- a/java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java
+++ b/java/systests/src/main/java/org/apache/qpid/test/framework/Circuit.java
@@ -24,7 +24,7 @@ import java.util.List;
/**
* A Circuit is the basic test unit against which test cases are to be written. A circuit consists of two 'ends', an
- * instigating 'publisher' end and a more passive 'receiver' end.
+ * instigating 'publisher' end and a more passive 'receivers' end.
*
* <p/>Once created, the life-cycle of a circuit may be controlled by {@link #start()}ing it, or {@link #close()}ing it.
* Once started, the circuit is ready to send messages over. Once closed the circuit can no longer be used.
@@ -97,10 +97,10 @@ public interface Circuit
*/
public List<Assertion> applyAssertions(List<Assertion> assertions);
- /**
+ /*
* Sends a message on the test circuit. The exact nature of the message sent is controlled by the test parameters.
*/
- public void send();
+ // public void send();
/**
* Runs the default test procedure against the circuit, and checks that all of the specified assertions hold.