Removed accidental commit of failing test case.

This commit is contained in:
duncan 2016-12-12 15:14:58 +00:00
parent 5556118ad1
commit 31fcd3bd8b
1 changed files with 0 additions and 12 deletions

View File

@ -42,18 +42,6 @@ import org.junit.Test;
@SuppressWarnings("deprecation") // deliberate use of deprecated code
public class ArrayUtilsTest {
static <T> T[] arrayOfTwo(T a, T b) {
return ArrayUtils.toArray(a, b);
}
@Test
public void testBadVarArgs() throws Exception {
@SuppressWarnings("unused") // Need to assign to trigger exception
String[] result = arrayOfTwo("foo", "bar");
}
//-----------------------------------------------------------------------
@Test
public void testConstructor() {