mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
23.35.2011 0c01f3d3ee3608a2be9aa350bfcb2213de5e7c7d
opendj-sdk/opendj3/opendj-sdk/src/test/java/org/opends/sdk/ByteSequenceTestCase.java
@@ -34,7 +34,6 @@
import java.util.Arrays;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
@@ -44,20 +43,6 @@
 */
public abstract class ByteSequenceTestCase extends SdkTestCase
{
  /**
   * ByteSequence data provider that gets the ByteSequence implementation from
   * the abstract method.
   *
   * @return The array of ByteStrings and the bytes it should contain.
   */
  @DataProvider(name = "byteSequenceProvider")
  public Object[][] concreteByteSequenceProvider() throws Exception
  {
    return byteSequenceProvider();
  }
  @Test(dataProvider = "byteSequenceProvider")
  public void testByteAt(final ByteSequence bs, final byte[] ba)
  {
@@ -240,8 +225,4 @@
    Assert.assertTrue(bs.toString().equals(str));
  }
  protected abstract Object[][] byteSequenceProvider() throws Exception;
}