I have this problem in testing assertArrayEquals in JUnit as I am not sure how it works. I created a method so I can understand it but its not working. Can anyone help sort this out here is the code:
public class ArrayAssert
{
public boolean check(int[] arr2)
{
final int[] arr1 = new int[] { 1, 2, 3 };
arr2 = new int[arr1.length];
for (int i = 0; i < arr1.length; i++)
{
if (arr1[i] != arr2[i])
{
System.out.println("false");
return false;
}
}
System.out.println("true");
return true;
}
public static void main(String[] args)
{
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
ArrayAssert obj = new ArrayAssert();
int[] arr2 = new int[2];
for (int i = 0; i < 2; i++)
{
System.out.println("Enter numbers to check");
arr2[i] = scan.nextInt();
obj.check(arr2);
}
}
}
Here is the test case I made using JUnit
import static org.junit.Assert.*;
import org.junit.Test;
public class ArrayAssertTest {
int []val = new int[]{1,2,3};
@Test
public void testCheck(int[] val) {
boolean expect = true;
boolean result ;
assertArrayEquals(expect,result);
}
}