[Go] Use JUNIT4 for unit testing in Eclipse (beginner)

Source: Internet
Author: User

First, let's take a stupid crash tutorial and don't ask why,follow Me, let's experience the thrill of unit testing!

first a new project called junit_test We write a calculator Class, a calculator class that can simply implement subtraction, square, and root, and then unit-test these functions. This class is not perfect, we deliberately kept some bug For demonstration, these bug

 PackageAndycpp; Public classCalculator {Private Static intResult//static variables for storing run results     Public voidAddintN) {result=result+N; }         Public voidSubstract (intN) {result=result-1;//Bug: The correct should be result=result-n;    }         Public voidMultiplyintN) {//This method is not yet written.    }         Public voidDivideintN) {result=result/N; }         Public voidSquareintN) {result=n*N; }         Public voidSquareRoot (intN) { for(;;);//Bug: Dead Loop    }         Public voidClear () {result= 0;//clear the results 0    }         Public intGetResult () {returnresult; }}

The second step is to introduce the JUNIT4 Unit test package into this project: Right-click on the item, click "Properties",

java Build path "and then to the right, select" " tag, then click " add Library ... "button, as shown in

Then select JUnit4 in the new pop-up dialog and click OK, as shown in theJUNIT4 software package is included in our project.

The third step is to generateJunit test framework: eclipse new - JUnit Test case< Span style= "font-family: Song body; font-size:14pt; " >". As shown:

In the popup dialog box, make the appropriate selections as shown in:

After clicking "Next", the system will automatically list the methods contained in your class and choose the method you want to test. In this example, we only test the "add, subtract, multiply, divide" four methods. As shown in the following:

The system then automatically generates a new class calculatortest, which contains some empty test cases. You only need to make these test cases slightly modified to use.

The complete calculatortest code is as follows:

 PackageAndycpp;Import Staticorg.junit.assert.*;ImportOrg.junit.After;ImportOrg.junit.Before;ImportOrg.junit.Ignore;Importorg.junit.Test;ImportOrg.junit.internal.runners.TestClassRunner;ImportOrg.junit.runner.RunWith; the @RunWith (Testclassrunner.class) Public classCalculatortest {Private StaticCalculator calculator=NewCalculator (); @Before Public voidSetUp ()throwsException {calculator.clear (); } @After Public voidTearDown ()throwsException {} @Test (timeout=1000)     Public voidTestadd () {Calculator.add (2); Calculator.add (3); Assertequals (5, Calculator.getresult ()); } @Test Public voidtestsubstract () {Calculator.add (10); Calculator.substract (2); Assertequals (8, Calculator.getresult ()); } @Ignore ("Multiply () not yet implemented") @Test Public voidtestmultiply () {} @Test (expected=arithmeticexception.class)     Public voidtestdivide () {Calculator.add (8); Calculator.divide (0); Assertequals (4, Calculator.getresult ()); }}

Fourth step, run the test code: After modifying the code as described above, we right-click on the Calculatortest class and select "Run as - JUnit test" to run our tests as shown in:

The results of the operation are as follows:

Progress bar is red color indicates found error, the specific test results on the progress bar indicates "a total of 4 tests, of which 1 tests were ignored, one test failed."

At this point, we have fully experienced the methods of using JUnit in Eclipse .

[Go] Use JUNIT4 for unit testing in Eclipse (beginner)

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.