mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-13 23:48:46 +01:00
18 lines
334 B
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();
|
|
|
|
}
|
|
}
|