ignore JavaFX tests on Mac properly

This commit is contained in:
nik
2015-06-03 22:02:28 +03:00
parent 170ed1871c
commit 592be88cbd
2 changed files with 6 additions and 6 deletions
@@ -31,9 +31,9 @@ import java.util.List;
public class JavaFXCollapseSubtagToAttributeTest extends DaemonAnalyzerTestCase {
@Override
protected void setUp() throws Exception {
super.setUp();
Assume.assumeFalse(SystemInfo.isMac);
protected void runTest() throws Throwable {
Assume.assumeFalse(SystemInfo.isLinux);
super.runTest();
}
@Override
@@ -32,9 +32,9 @@ import org.junit.Assume;
*/
public class JavaFXHighlightingTest extends AbstractJavaFXTestCase {
@Override
protected void setUp() throws Exception {
super.setUp();
Assume.assumeFalse(SystemInfo.isMac);
protected void runTest() throws Throwable {
Assume.assumeFalse(SystemInfo.isLinux);
super.runTest();
}
public void testLoginForm() throws Exception {