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

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

package com.carrotsearch.examples.randomizedrunner.reports;

import junit.framework.Assert;

import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;

import com.carrotsearch.randomizedtesting.RandomizedRunner;

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

  @Test
  public void noop() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy