Q:

assert java

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
// Java program to demonstrate syntax of assertion 
class Test { 
    public static void main(String args[]){ 
        int value = 15; 
        assert value >= 20 : " Underweight"; 
        System.out.println("value is "+value); 
    } 
} 
0
public void setup() {    Connection conn = getConnection();    assert conn != null;}
0

New to Communities?

Join the community