Remove atomix.storage.buffer
[controller.git] / third-party / atomix / storage / src / test / java / io / atomix / storage / buffer / DirectBufferTest.java
diff --git a/third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/DirectBufferTest.java b/third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/DirectBufferTest.java
deleted file mode 100644 (file)
index 5602b5a..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright 2015-present Open Networking Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package io.atomix.storage.buffer;
-
-import org.junit.Test;
-
-import java.nio.ByteBuffer;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
-
-/**
- * Direct buffer test.
- *
- * @author <a href="http://github.com/kuujo">Jordan Halterman</a>
- */
-public class DirectBufferTest extends BufferTest {
-
-  @Override
-  protected Buffer createBuffer(int capacity) {
-    return DirectBuffer.allocate(capacity);
-  }
-
-  @Override
-  protected Buffer createBuffer(int capacity, int maxCapacity) {
-    return DirectBuffer.allocate(capacity, maxCapacity);
-  }
-
-  @Test
-  public void testByteBufferToDirectBuffer() {
-    ByteBuffer byteBuffer = ByteBuffer.allocate(8);
-    byteBuffer.putLong(10);
-    byteBuffer.flip();
-
-    DirectBuffer directBuffer = DirectBuffer.allocate(8);
-    directBuffer.write(byteBuffer.array());
-    directBuffer.flip();
-    assertEquals(directBuffer.readLong(), byteBuffer.getLong());
-    assertTrue(directBuffer.isDirect());
-    directBuffer.release();
-  }
-
-}