
vuegwt.shaded.org.junit.runner.manipulation.Orderable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vue-gwt-processors Show documentation
Show all versions of vue-gwt-processors Show documentation
Annotation Processors for Vue GWT
The newest version!
package org.junit.runner.manipulation;
/**
* Interface for runners that allow ordering of tests.
*
* Beware of using this interface to cope with order dependencies between tests.
* Tests that are isolated from each other are less expensive to maintain and
* can be run individually.
*
* @since 4.13
*/
public interface Orderable extends Sortable {
/**
* Orders the tests using orderer
*
* @throws InvalidOrderingException if orderer does something invalid (like remove or add
* children)
*/
void order(Orderer orderer) throws InvalidOrderingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy