All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sample.junit4.AssertJunit4Style Maven / Gradle / Ivy

package sample.junit4;

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


public class AssertJunit4Style {

    @Test
    public void withAsserts() {
        Assert.assertTrue(true);
    }

    @Test
    public void withoutAsserts() {
        throw new UnsupportedOperationException();
    }

    public void notATest(){
        throw new UnsupportedOperationException();
    }

    @Test
    @Ignore
    public void disabledTest(){
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy