JUnit-JUnit测试报“No JUnit tests found”错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JUnit-JUnit测试报“No JUnit tests found”错误相关的知识,希望对你有一定的参考价值。

参考技术A 在eclipse中,在测试类,右键->Run As ->JUnit Test。报错:“No JUnit tests found”。

解决方法:
在测试类右键 -> Build Path -> Configure Build Path... -> Libraries -> Add Library ->JUnit -> Next -> Finish

Java 单元测试报错

?Java 单元测试报错:Test class should have exactly one public zero-argument constructor?

public class Test{

  private String a;

  private int b;

}

public Test(String a, int b){

  this.a = a;

  this.b = b;

}

public boolean t1(String s){

  if(s.length()){

    return true;

  }else{

  return false;

  }

}

@Test

public void test1(){

  Test t = new Test("aaa",  5);

  t.t1("123");

}

运行程序出现:

java.lang.Exception:

Test class should have exactly one public zero-argument constructor

原因:该类中包含了有参构造函数。解决办法:将有参构造函数的类独立出来即可。

 

以上是关于JUnit-JUnit测试报“No JUnit tests found”错误的主要内容,如果未能解决你的问题,请参考以下文章

EasyClick IOS 自动化测试报错

软件测试到底自学还是报班?

EasyClick IOS 自动化测试报错

EasyClick IOS 自动化测试报错

myeclipse中用Junit测试方法报错

转载ODATA服务测试报错处理