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

sample.junit4.IgnoredClass Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package sample.junit4;

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

@Ignore
public class IgnoredClass {

    @Test
    public void activeTest(){}

    @Test
    @Ignore
    public void ignoredTest(){}

    public void notTest(){}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy