Razen Yang
0
Q:

java testing with assertions

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class AssertionExample {

    /**
     * The assertionExample function
     * uses multiple assertions for the purpose of example;
     * Usually in one method it is recommended to have 1 assertion;
     */
    @Test
    public void assertionExample()
    {
        Assertions.assertEquals(2+2,4);

        Assertions.assertNotEquals(6+3,10);

        Assertions.assertTrue("Radu".length()==4);

        String tester = null;

        Assertions.assertThrows(NullPointerException.class,()->tester.equals("emptyString"));
    }
}
1

New to Communities?

Join the community