Answers for "junit tests"

4

java junit test

import org.junit.Assert;
import org.junit.Test;

public class Test {

    public static int square(int n) {
        return n * n;
    }

    @Test
    public void squareTest() {
        Assert.assertEquals(25, square(5));
        Assert.assertEquals(16, square(4));
        Assert.assertEquals(9, square(3));
        Assert.assertEquals(4, square(2));
        Assert.assertEquals(1, square(1));
    }
}
Posted by: Guest on October-23-2020
1

@test annotation in junit

# Used in JAVA
 public class Example {
    @Test
    public void method() {
       org.junit.Assert.assertTrue( new ArrayList().isEmpty() );
    }
 }
Posted by: Guest on February-04-2021
1

junit

-It is an open-source testing framework for java programmers. 
-Test runner support to execute the test case
-It is one of the unit testing framework.
-Assertion support for checking the expected result.
-Annotation support for test cases
Posted by: Guest on December-08-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language