mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
13 lines
230 B
Java
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);
|
|
}
|
|
}
|