org.junit.contrib.java.lang.system.Assertion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of system-rules Show documentation
Show all versions of system-rules Show documentation
A collection of JUnit rules for testing code which uses java.lang.System.
package org.junit.contrib.java.lang.system;
/**
* An {@code Assertion} encapsulates the code of an assertion into an object.
*/
public interface Assertion {
void checkAssertion() throws Exception;
}