Answers for "How did you write test classes? Using JUnit, how did you check the data with API calls or hard coding the values ?"

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

Code answers related to "How did you write test classes? Using JUnit, how did you check the data with API calls or hard coding the values ?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language