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

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

package com.carrotsearch.examples.randomizedrunner.reports;

import junit.framework.Assert;

import org.junit.Assume;
import org.junit.Ignore;
import org.junit.Test;

public class Test001AllStatuses {
  @Test
  public void passed() {}
  
  @Test
  @Ignore
  public void ignored() {}

  @Test
  public void ignored_assumption() {
    Assume.assumeTrue(false);
  }

  @Test
  public void failure() {
    Assert.fail();
  }

  @Test
  public void error() {
    throw new RuntimeException();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy