summaryrefslogtreecommitdiff
path: root/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java')
-rw-r--r--java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java b/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
index 5e7783f492..4fd1f60d69 100644
--- a/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
+++ b/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
@@ -20,9 +20,9 @@
*/
package org.apache.qpid.framing;
-import junit.framework.TestCase;
+import org.apache.mina.common.ByteBuffer;
-import java.io.*;
+import junit.framework.TestCase;
public class BasicContentHeaderPropertiesTest extends TestCase
@@ -76,14 +76,15 @@ public class BasicContentHeaderPropertiesTest extends TestCase
assertEquals(99, _testProperties.getPropertyFlags());
}
- public void testWritePropertyListPayload() throws IOException
+ public void testWritePropertyListPayload()
{
- _testProperties.writePropertyListPayload(new DataOutputStream(new ByteArrayOutputStream(300)));
+ ByteBuffer buf = ByteBuffer.allocate(300);
+ _testProperties.writePropertyListPayload(buf);
}
public void testPopulatePropertiesFromBuffer() throws Exception
{
- DataInputStream buf = new DataInputStream(new ByteArrayInputStream(new byte[300]));
+ ByteBuffer buf = ByteBuffer.allocate(300);
_testProperties.populatePropertiesFromBuffer(buf, 99, 99);
}