Skip to content

Commit 5eac7a4

Browse files
committed
adapt test
1 parent 46559fe commit 5eac7a4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/test/java/wprover/GExpertTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
import javax.swing.JComponent;
55
import javax.swing.JFileChooser;
66

7-
import com.google.gwt.editor.client.Editor;
87
import org.junit.jupiter.api.BeforeEach;
8+
import org.junit.jupiter.api.Disabled;
99
import org.junit.jupiter.api.Test;
1010

11+
@Disabled("disabled because github can't execute this type of tests remotely")
1112
public class GExpertTest {
1213

1314
private GExpert expert;
@@ -19,21 +20,20 @@ public void setUp() {
1920
expert.init();
2021
}
2122

22-
@Editor.Ignore
23+
2324
@Test
2425
public void contentPanelShouldNotBeNull() {
2526
JComponent content = expert.getContent();
2627
assertNotNull(content, "Content panel should not be null");
2728
}
2829

29-
@Editor.Ignore
30+
3031
@Test
3132
public void shouldReturnNonNullFileChooser() {
3233
JFileChooser chooser = expert.getFileChooser(false);
3334
assertNotNull(chooser, "File chooser should not be null");
3435
}
3536

36-
@Editor.Ignore
3737
@Test
3838
public void clearOperationShouldReturnZero() {
3939
// Clear returns 0 on success

0 commit comments

Comments
 (0)