1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/app/test/processing/app/AbstractWithPreferencesTest.java

18 lines
334 B
Java

package processing.app;
import org.junit.Before;
public abstract class AbstractWithPreferencesTest {
@Before
public void init() throws Exception {
Base.initPlatform();
Preferences.init(null);
Theme.init();
Base.untitledFolder = Base.createTempFolder("untitled");
Base.untitledFolder.deleteOnExit();
}
}