use of org.evosuite.runtime.mock.javax.swing.MockJFileChooser in project evosuite by EvoSuite.
the class MockJFileChooserTest method testGetCurrentDirectory.
@Test
public void testGetCurrentDirectory() {
JFileChooser chooser = new MockJFileChooser();
File dir = chooser.getCurrentDirectory();
Assert.assertTrue(dir.exists());
Assert.assertTrue(dir instanceof MockFile);
}
Aggregations