diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2006-11-22 18:01:45 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2006-11-22 18:01:45 +0000 |
| commit | 86cae75b02bba046dcc5191345d935fa7110bed2 (patch) | |
| tree | c95dad8c8321aa00de84733d2f1a8bba13ab47f3 /qpid/java | |
| parent | dce22229ecda3879eebcc6c2abdbcd0491fa108e (diff) | |
| download | qpid-python-86cae75b02bba046dcc5191345d935fa7110bed2.tar.gz | |
PropertyFieldTableTest.java - Removed system.out.println
pom.xml removed skip test item and added junit dependency.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@478260 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/common/pom.xml | 18 | ||||
| -rw-r--r-- | qpid/java/common/src/test/java/org/apache/qpid/framing/PropertyFieldTableTest.java | 3 |
2 files changed, 10 insertions, 11 deletions
diff --git a/qpid/java/common/pom.xml b/qpid/java/common/pom.xml index c40f773ade..b0d68a3559 100644 --- a/qpid/java/common/pom.xml +++ b/qpid/java/common/pom.xml @@ -46,15 +46,7 @@ </properties> <build> - <plugins> - <!-- There are no common tests at the moment --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> + <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -95,5 +87,13 @@ <groupId>org.apache.mina</groupId> <artifactId>mina-core</artifactId> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <dependency> + <groupId>ant</groupId> + <artifactId>ant-junit</artifactId> + </dependency> </dependencies> </project> diff --git a/qpid/java/common/src/test/java/org/apache/qpid/framing/PropertyFieldTableTest.java b/qpid/java/common/src/test/java/org/apache/qpid/framing/PropertyFieldTableTest.java index ed30329093..5070b6ecb1 100644 --- a/qpid/java/common/src/test/java/org/apache/qpid/framing/PropertyFieldTableTest.java +++ b/qpid/java/common/src/test/java/org/apache/qpid/framing/PropertyFieldTableTest.java @@ -206,8 +206,7 @@ public class PropertyFieldTableTest extends TestCase PropertyFieldTable table2 = new PropertyFieldTable(table1XML); - Assert.assertEquals(table1XML, table2.toString()); - System.out.println(table2.toString()); + Assert.assertEquals(table1XML, table2.toString()); } public void testKeyEnumeration() |
