File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import javax .swing .JComponent ;
55import javax .swing .JFileChooser ;
66
7- import com .google .gwt .editor .client .Editor ;
87import org .junit .jupiter .api .BeforeEach ;
8+ import org .junit .jupiter .api .Disabled ;
99import org .junit .jupiter .api .Test ;
1010
11+ @ Disabled ("disabled because github can't execute this type of tests remotely" )
1112public 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
You can’t perform that action at this time.
0 commit comments