I am trying to write Junit test case for the function given below:
class A{
  int i;
  void set()
  {
    Scanner in=new Scanner(System.in);
    i=in.nextInt();
  }
}
Now my problem is when i create a Junit test case for it, it does not except input from user:
 public void testSet() throws FileNotFoundException {
    System.out.println("set");
    A instance = new A();
    int i=1;
    instance.set(i);
    // TODO review the generated test code and remove the default call to fail.
    //fail("The test case is a prototype.");
}
Please suggets what should i do to accept input from user.
 
    