com.carrotsearch.examples.randomizedrunner.reports.Test007BeforeClassError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of randomizedtesting-examples Show documentation
Show all versions of randomizedtesting-examples Show documentation
Simple use-case examples meant to be included in some
end-user documentation if it's ever going to be written...
package com.carrotsearch.examples.randomizedrunner.reports;
import org.junit.BeforeClass;
import org.junit.Test;
/** */
public class Test007BeforeClassError {
@BeforeClass
public static void errorOnMe() {
throw new RuntimeException();
}
@Test
public void noop() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy