Java Unit Test Error

Source: Internet
Author: User

? Java Unit Test Error: Test class should has 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");

}

The running program appears:

Java.lang.Exception:

Test class should has exactly one public Zero-argument constructor

Cause: The class contains a parameter constructor. Workaround: Separate the class with the argument constructor.

Java Unit Test Error

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.