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

sample.junit5.IgnoredClass Maven / Gradle / Ivy

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

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

@Disabled
public class IgnoredClass {

    @Test
    public void activeTest(){}

    @Test
    @Disabled
    public void ignoredTest(){}

    public void notTest(){}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy