Remove @Ignore annotation for two tests that actually pass.
Replace assumeTrue by assertTrue in LegacyServiceTest and LegacyOpenerTest, as we want them to fail if the conditions aren't met.
Note that the usage of assumeTrue(!GraphicsEnvironment.isHeadless()); in SwitchToModernTest, RoiManagerPreprocessorTest and ShutdownTest is unchanged, as this will lead to those tests being ignored when run in headless mode (i.e. on Travis CI).
@Ignore
annotation for two tests that actually pass.assumeTrue
byassertTrue
inLegacyServiceTest
andLegacyOpenerTest
, as we want them to fail if the conditions aren't met.Note that the usage of
assumeTrue(!GraphicsEnvironment.isHeadless());
inSwitchToModernTest
,RoiManagerPreprocessorTest
andShutdownTest
is unchanged, as this will lead to those tests being ignored when run in headless mode (i.e. on Travis CI).