Cosmetics.

This commit is contained in:
Simone Bordet 2017-10-02 17:18:10 +02:00
parent 807233771d
commit 2b43e668a3
1 changed files with 12 additions and 13 deletions

View File

@ -18,14 +18,6 @@
package org.eclipse.jetty.io; package org.eclipse.jetty.io;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ConcurrentMap;
@ -34,6 +26,14 @@ import org.eclipse.jetty.util.BufferUtil;
import org.eclipse.jetty.util.StringUtil; import org.eclipse.jetty.util.StringUtil;
import org.junit.Test; import org.junit.Test;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
public class MappedByteBufferPoolTest public class MappedByteBufferPoolTest
{ {
@Test @Test
@ -93,8 +93,10 @@ public class MappedByteBufferPoolTest
} }
/** /**
* In a scenario where MappedByteBufferPool is being used improperly, such as releasing a buffer that wasn't created/acquired by the MappedByteBufferPool, * In a scenario where MappedByteBufferPool is being used improperly,
* an assertion is tested for. * such as releasing a buffer that wasn't created/acquired by the
* MappedByteBufferPool, an assertion is tested for.
*
* @throws Exception test failure * @throws Exception test failure
*/ */
@Test @Test
@ -134,8 +136,6 @@ public class MappedByteBufferPoolTest
assertThat(BufferUtil.toDetailString(buffer),containsString("@T00000002")); assertThat(BufferUtil.toDetailString(buffer),containsString("@T00000002"));
} }
@Test @Test
public void testMaxQueue() throws Exception public void testMaxQueue() throws Exception
{ {
@ -157,6 +157,5 @@ public class MappedByteBufferPoolTest
bufferPool.release(buffer3); bufferPool.release(buffer3);
assertEquals(2, bucket.size()); assertEquals(2, bucket.size());
} }
} }