51Testing软件测试论坛

标题: 如何在java中对用户输入进行单元测试 [打印本页]

作者: lsekfe    时间: 2021-6-4 09:46
标题: 如何在java中对用户输入进行单元测试
我试图了解如何测试用户的输入(请注意我不是在尝试模拟测试,而是测试实际用户的输入)。
  目前正如您在我的程序中看到的那样,我已经对我的测试用例的值进行了硬编码,并且它正在通过所有测试但是我如何获得用户的输入并进行测试。
  有没有办法在我的构造函数中调用System.in并在测试类中创建MyClass1实例时传递它?
  请尽可能给我一些示例代码,以便我能更好地理解。
  如果我有这样的接口:
  1. public interface IMyClass{
  2.   public int getvalue1();
  3.   public int getvalue2();
  4.   public int getvalue3();
  5.   }
复制代码

然后接口实现:
  1. public class MyClass1 implements MyClass{
  2.   private int _value1 = 0;
  3.   private int _value2 = 0;
  4.   private int _value3 = 0;
  5.   public MyClass1(int number1, int number2, int number3)
  6.   {
  7.   _value1 = number1;
  8.   _value2 = number2;
  9.   _value3 = number3;
  10.   }
  11.   public void setLength1(int value1)
  12.   {
  13.   _value1 = value1;
  14.   }
  15.   public void setLength2(int length2)
  16.   {
  17.   _value2 = value2;
  18.   }
  19.   public void setLength3(int length3)
  20.   {
  21.   _value3 = value3;
  22.   }
  23.   public int getValue1()
  24.   {
  25.   return _value1;
  26.   }
  27.   public int getValue2()
  28.   {
  29.   return _value2;
  30.   }
  31.   public int getValue3()
  32.   {
  33.   return _value3;
  34.   }
  35.   }
复制代码
最后是一个测试类:
  1.  public class ClasTest extends TestCase {
  2.   public void testNumbers()
  3.   {
  4.   MyClass1 numbers= new MyClass1(1,2,3);
  5.   assertThat(numbers.getValue1(),is(not(numbers.getValue2())));
  6.   }
  7.   }
复制代码
谢谢你,我感谢任何帮助。
  解决方法:

  1. 请在文本框输入文字
复制代码
使用System.setIn(new InputSteam());然后写入传入System.in的输入流。
  单输入
  1. String data = "Users Input";
  2.   System.setIn(new ByteArrayInputStream(data.getBytes()));
  3.   Scanner scanner = new Scanner(System.in);
  4.   System.out.println(scanner.nextLine());
复制代码
结果
  1. Users Input
复制代码
多输入
  1.  String data = "Users Input" +
  2.   "\nA second line of user input.";
  3.   System.setIn(new ByteArrayInputStream(data.getBytes()));
  4.   Scanner scanner = new Scanner(System.in);
  5.   System.out.println("Line 1: " + scanner.nextLine());
  6.   System.out.println("Line 2: " + scanner.nextLine());
复制代码
结果
  1.  Line 1: Users Input
  2.   Line 2: A second line of user input.
复制代码








欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2