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

org.junit.Ignore Maven / Gradle / Ivy

Go to download

A collection of tests that can certify language implementation to be compliant with most recent requirements of the Truffle infrastructure and tooling.

The newest version!
package org.junit;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 

Sometimes you want to temporarily disable a test or a group of tests. Methods annotated with * {@link org.junit.Test} that are also annotated with @Ignore will not be executed as tests. * Also, you can annotate a class containing test methods with @Ignore and none of the containing * tests will be executed. Native JUnit 4 test runners should report the number of ignored tests along with the * number of tests that ran and the number of tests that failed.

* * For example: *
 *    @Ignore @Test public void something() { ...
 * 
* @Ignore takes an optional default parameter if you want to record why a test is being ignored:
*
 *    @Ignore("not ready yet") @Test public void something() { ...
 * 
* @Ignore can also be applied to the test class:
*
 *      @Ignore public class IgnoreMe {
 *          @Test public void test1() { ... }
 *          @Test public void test2() { ... }
 *         }
 * 
* * @since 4.0 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD, ElementType.TYPE}) public @interface Ignore { /** * The optional reason why the test is ignored. */ String value() default ""; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy