diff options
author | Robert Gemmell <robbie@apache.org> | 2014-04-22 14:50:53 +0000 |
---|---|---|
committer | Robert Gemmell <robbie@apache.org> | 2014-04-22 14:50:53 +0000 |
commit | 528ba1dbb1ef0723ef93f2c153165442fb2d35f8 (patch) | |
tree | d69c44598488d0bbf53ef913ed6f69b3d897fc50 /java/common/src | |
parent | e70b7e47b1e8881a7a43ab62001337deb78b107d (diff) | |
download | qpid-python-528ba1dbb1ef0723ef93f2c153165442fb2d35f8.tar.gz |
QPID-5702: upgrade JUnit dependency from version 3.8.1 to 4.11, change imports etc to remove deprecation notices
Patch Supplied by Andrew MacBean <andymacbean@gmail.com>.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1589144 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
-rw-r--r-- | java/common/src/test/java/org/apache/qpid/framing/FieldTableTest.java | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/framing/FieldTableTest.java b/java/common/src/test/java/org/apache/qpid/framing/FieldTableTest.java index 1ecf450551..4b9ac81324 100644 --- a/java/common/src/test/java/org/apache/qpid/framing/FieldTableTest.java +++ b/java/common/src/test/java/org/apache/qpid/framing/FieldTableTest.java @@ -20,7 +20,7 @@ */ package org.apache.qpid.framing; -import junit.framework.Assert; +import org.junit.Assert; import junit.framework.TestCase; import org.apache.qpid.AMQPInvalidClassException; @@ -107,7 +107,7 @@ public class FieldTableTest extends TestCase // Tests lookups we shouldn't get anything back for other gets // we should get right value back for this type .... Assert.assertEquals(null, table1.getBoolean("value")); - Assert.assertEquals(Byte.MAX_VALUE, (byte) table1.getByte("value")); + Assert.assertEquals(Byte.valueOf(Byte.MAX_VALUE), table1.getByte("value")); Assert.assertEquals(null, table1.getShort("value")); Assert.assertEquals(null, table1.getCharacter("value")); Assert.assertEquals(null, table1.getDouble("value")); @@ -141,7 +141,7 @@ public class FieldTableTest extends TestCase // we should get right value back for this type .... Assert.assertEquals(null, table1.getBoolean("value")); Assert.assertEquals(null, table1.getByte("value")); - Assert.assertEquals(Short.MAX_VALUE, (short) table1.getShort("value")); + Assert.assertEquals(Short.valueOf(Short.MAX_VALUE), table1.getShort("value")); Assert.assertEquals(null, table1.getCharacter("value")); Assert.assertEquals(null, table1.getDouble("value")); Assert.assertEquals(null, table1.getFloat("value")); @@ -175,7 +175,7 @@ public class FieldTableTest extends TestCase Assert.assertEquals(null, table1.getBoolean("value")); Assert.assertEquals(null, table1.getByte("value")); Assert.assertEquals(null, table1.getShort("value")); - Assert.assertEquals('c', (char) table1.getCharacter("value")); + Assert.assertEquals(Character.valueOf('c'), table1.getCharacter("value")); Assert.assertEquals(null, table1.getDouble("value")); Assert.assertEquals(null, table1.getFloat("value")); Assert.assertEquals(null, table1.getInteger("value")); @@ -210,7 +210,7 @@ public class FieldTableTest extends TestCase Assert.assertEquals(null, table1.getByte("value")); Assert.assertEquals(null, table1.getShort("value")); Assert.assertEquals(null, table1.getCharacter("value")); - Assert.assertEquals(Double.MAX_VALUE, (double) table1.getDouble("value")); + Assert.assertEquals(Double.valueOf(Double.MAX_VALUE), table1.getDouble("value")); Assert.assertEquals(null, table1.getFloat("value")); Assert.assertEquals(null, table1.getInteger("value")); Assert.assertEquals(null, table1.getLong("value")); @@ -246,7 +246,7 @@ public class FieldTableTest extends TestCase Assert.assertEquals(null, table1.getShort("value")); Assert.assertEquals(null, table1.getCharacter("value")); Assert.assertEquals(null, table1.getDouble("value")); - Assert.assertEquals(Float.MAX_VALUE, (float) table1.getFloat("value")); + Assert.assertEquals(Float.valueOf(Float.MAX_VALUE), table1.getFloat("value")); Assert.assertEquals(null, table1.getInteger("value")); Assert.assertEquals(null, table1.getLong("value")); Assert.assertEquals(null, table1.getBytes("value")); @@ -283,7 +283,7 @@ public class FieldTableTest extends TestCase Assert.assertEquals(null, table1.getCharacter("value")); Assert.assertEquals(null, table1.getDouble("value")); Assert.assertEquals(null, table1.getFloat("value")); - Assert.assertEquals(Integer.MAX_VALUE, (int) table1.getInteger("value")); + Assert.assertEquals(Integer.valueOf(Integer.MAX_VALUE), table1.getInteger("value")); Assert.assertEquals(null, table1.getLong("value")); Assert.assertEquals(null, table1.getBytes("value")); @@ -320,7 +320,7 @@ public class FieldTableTest extends TestCase Assert.assertEquals(null, table1.getDouble("value")); Assert.assertEquals(null, table1.getFloat("value")); Assert.assertEquals(null, table1.getInteger("value")); - Assert.assertEquals(Long.MAX_VALUE, (long) table1.getLong("value")); + Assert.assertEquals(Long.valueOf(Long.MAX_VALUE), table1.getLong("value")); Assert.assertEquals(null, table1.getBytes("value")); // ... and a the string value of it. @@ -476,17 +476,17 @@ public class FieldTableTest extends TestCase FieldTable extractedTable = extractedOuterTable.getFieldTable("innerTable"); - Assert.assertEquals((Boolean) true, extractedTable.getBoolean("bool")); - Assert.assertEquals((Byte) Byte.MAX_VALUE, extractedTable.getByte("byte")); + Assert.assertEquals(Boolean.TRUE, extractedTable.getBoolean("bool")); + Assert.assertEquals(Byte.valueOf(Byte.MAX_VALUE), extractedTable.getByte("byte")); assertBytesEqual(testBytes, extractedTable.getBytes("bytes")); - Assert.assertEquals((Character) 'c', extractedTable.getCharacter("char")); - Assert.assertEquals(Double.MAX_VALUE, extractedTable.getDouble("double")); - Assert.assertEquals(Float.MAX_VALUE, extractedTable.getFloat("float")); - Assert.assertEquals((Integer) Integer.MAX_VALUE, extractedTable.getInteger("int")); - Assert.assertEquals((Long) Long.MAX_VALUE, extractedTable.getLong("long")); - Assert.assertEquals((Short) Short.MAX_VALUE, extractedTable.getShort("short")); + Assert.assertEquals(Character.valueOf('c'), extractedTable.getCharacter("char")); + Assert.assertEquals(Double.valueOf(Double.MAX_VALUE), extractedTable.getDouble("double")); + Assert.assertEquals(Float.valueOf(Float.MAX_VALUE), extractedTable.getFloat("float")); + Assert.assertEquals(Integer.valueOf(Integer.MAX_VALUE), extractedTable.getInteger("int")); + Assert.assertEquals(Long.valueOf(Long.MAX_VALUE), extractedTable.getLong("long")); + Assert.assertEquals(Short.valueOf(Short.MAX_VALUE), extractedTable.getShort("short")); Assert.assertEquals("hello", extractedTable.getString("string")); - Assert.assertEquals(null, extractedTable.getString("null-string")); + Assert.assertNull(extractedTable.getString("null-string")); } catch (AMQFrameDecodingException e) { @@ -543,17 +543,17 @@ public class FieldTableTest extends TestCase AMQPInvalidClassException.INVALID_OBJECT_MSG + Exception.class, aice.getMessage()); } - Assert.assertEquals((Boolean) true, table.getBoolean("bool")); - Assert.assertEquals((Byte) Byte.MAX_VALUE, table.getByte("byte")); + Assert.assertEquals(Boolean.TRUE, table.getBoolean("bool")); + Assert.assertEquals(Byte.valueOf(Byte.MAX_VALUE), table.getByte("byte")); assertBytesEqual(bytes, table.getBytes("bytes")); - Assert.assertEquals((Character) 'c', table.getCharacter("char")); - Assert.assertEquals(Double.MAX_VALUE, table.getDouble("double")); - Assert.assertEquals(Float.MAX_VALUE, table.getFloat("float")); - Assert.assertEquals((Integer) Integer.MAX_VALUE, table.getInteger("int")); - Assert.assertEquals((Long) Long.MAX_VALUE, table.getLong("long")); - Assert.assertEquals((Short) Short.MAX_VALUE, table.getShort("short")); + Assert.assertEquals(Character.valueOf('c'), table.getCharacter("char")); + Assert.assertEquals(Double.valueOf(Double.MAX_VALUE), table.getDouble("double")); + Assert.assertEquals(Float.valueOf(Float.MAX_VALUE), table.getFloat("float")); + Assert.assertEquals(Integer.valueOf(Integer.MAX_VALUE), table.getInteger("int")); + Assert.assertEquals(Long.valueOf(Long.MAX_VALUE), table.getLong("long")); + Assert.assertEquals(Short.valueOf(Short.MAX_VALUE), table.getShort("short")); Assert.assertEquals("Hello", table.getString("string")); - Assert.assertEquals(null, table.getString("null-string")); + Assert.assertNull(table.getString("null-string")); Assert.assertEquals(true, table.getObject("object-bool")); Assert.assertEquals(Byte.MAX_VALUE, table.getObject("object-byte")); @@ -601,13 +601,13 @@ public class FieldTableTest extends TestCase Assert.assertEquals((Byte) Byte.MAX_VALUE, table2.getByte("byte")); assertBytesEqual(bytes, table2.getBytes("bytes")); Assert.assertEquals((Character) 'c', table2.getCharacter("char")); - Assert.assertEquals(Double.MAX_VALUE, table2.getDouble("double")); - Assert.assertEquals(Float.MAX_VALUE, table2.getFloat("float")); - Assert.assertEquals((Integer) Integer.MAX_VALUE, table2.getInteger("int")); - Assert.assertEquals((Long) Long.MAX_VALUE, table2.getLong("long")); - Assert.assertEquals((Short) Short.MAX_VALUE, table2.getShort("short")); + Assert.assertEquals(Double.valueOf(Double.MAX_VALUE), table2.getDouble("double")); + Assert.assertEquals(Float.valueOf(Float.MAX_VALUE), table2.getFloat("float")); + Assert.assertEquals(Integer.valueOf(Integer.MAX_VALUE), table2.getInteger("int")); + Assert.assertEquals(Long.valueOf(Long.MAX_VALUE), table2.getLong("long")); + Assert.assertEquals(Short.valueOf(Short.MAX_VALUE), table2.getShort("short")); Assert.assertEquals("hello", table2.getString("string")); - Assert.assertEquals(null, table2.getString("null-string")); + Assert.assertNull(table2.getString("null-string")); } public void testEncodingSize() |