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

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

Go to download

Simple use-case examples meant to be included in some end-user documentation if it's ever going to be written...

There is a newer version: 2.1.17
Show newest version
package com.carrotsearch.examples.randomizedrunner.reports;

import org.junit.*;
import org.junit.runner.RunWith;

import com.carrotsearch.randomizedtesting.RandomizedRunner;

/** */
@RunWith(RandomizedRunner.class)
public class Test008BeforeClassAssumptionRR {
  @BeforeClass
  public static void assumeMe() {
    Assume.assumeTrue(false);
  }

  @Test
  public void noop() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy