使用java的测试用例生成器
我正在使用 java 开发一个“自动测试用例生成器”。 java 程序的输入将由 prolog 程序提供。例如,如果输入是整数 2,那么 java 程序应该对数字进行平方并将其显示为输出。以同样的方式,如果有 3 个整数,java 程序应该一次接受一个数字并显示所有结果(我的意思是它应该测试每种情况)。
I'm developing an 'Automatic test case generator' using java. The inputs for the java program will be fed by prolog program. If the input is for example an integer 2 then the java program should square the number and display it as output. In the same way if there are 3 integers the java program should accept one number at a time and display all results (i mean it should test each case).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我在评论中所说,所有输入都是字符串。程序必须将字符串转换为不同的对象类型以“测试每种情况”,例如在以下程序中。
以防万一您感到困惑,您并不总是需要使用
try
块进行测试。您也可以使用if
和switch
块(即if (input.equalsIgnoreCase("dog")) //do Something
)As I said in a comment, all inputs are
Strings
The program has to convert the strings into different object types to "test each case", such as in the following program.Just in case you're confused, you don't always have to conduct tests with a
try
block. You can useif
andswitch
blocks as well (i.e.if (input.equalsIgnoreCase("dog")) //do something
)