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

com.carrotsearch.examples.randomizedrunner.reports.Test006BeforeClassFailure Maven / Gradle / Ivy

package com.carrotsearch.examples.randomizedrunner.reports;

import junit.framework.Assert;

import org.junit.BeforeClass;
import org.junit.Test;

/** */
public class Test006BeforeClassFailure {
  @BeforeClass
  public static void failOnMe() {
    Assert.assertTrue(false);
  }

  @Test
  public void noop() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy