1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00
Files
esp8266/app/test/processing/app/AbstractWithPreferencesTest.java
2013-05-06 12:31:03 +02:00

13 lines
230 B
Java

package processing.app;
import org.junit.BeforeClass;
public abstract class AbstractWithPreferencesTest {
@BeforeClass
public static void init() throws Exception {
Base.initPlatform();
Preferences.init(null);
}
}