public interface CanBeDisabled
To use with SpincastJUnitRunner.
| Modifier and Type | Method and Description |
|---|---|
boolean |
isTestClassDisabledPostBeforeClass()
Should the tests of this class all be disabled?
|
boolean |
isTestClassDisabledPreBeforeClass()
Should the tests class be disabled?
|
boolean isTestClassDisabledPreBeforeClass()
Note that this will be ran before everything
(including #beforeClass()):
no Guice context is available... But you can look
at System properties, for example as a way of
finding if the file must be ran or not.
Use isTestClassDisabledPostBeforeClass() if
you need the Guice context in order to perform
your logic.
boolean isTestClassDisabledPostBeforeClass()
Note that this will be ran after
#beforeClass(): the Guice context
is created and available.
If you need to disable the tests because on
some environments you are not even able to create
the Guice context, use
isTestClassDisabledPreBeforeClass()
instead.
Copyright © 2019. All rights reserved.