Junit01eclipse adding Junite

Source: Internet
Author: User

JUnit Fool Tutorial

Add a Java Project

Click Right to select Properties

The purpose of creating a source folder is to separate the test class from the class being tested

Add a class addition multiplication

public class Mathoperation {

public int Add (int a,int b) {

int result=a+b;

return result;
}

public int multiply (int a,int b) {
int result = A * b;
return result;
}

}

Add a test class

To add an assertion to the generated test class

public class Mathoperationtest {

Mathoperation mo=new mathoperation ();
@Test
public void Testadd () {
Fail ("not yet implemented");
int expected = 3;
int value= Mo.add (1, 2);

Assertequals (expected, value);

}

@Test
public void testmultiply () {
Fail ("not yet implemented");

int expected = 4;
int value= mo.multiply (2, 2);

Assertequals (expected, value);
}

}

Run as JUnit test

Junit01eclipse adding Junite

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.