mirror of
https://github.com/esp8266/Arduino.git
synced 2025-10-13 23:48:28 +03:00
36 lines
841 B
Java
36 lines
841 B
Java
package processing.app;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import processing.app.debug.TargetBoard;
|
|
|
|
import static org.junit.Assert.assertNotEquals;
|
|
|
|
public class DefaultTargetTest extends AbstractWithPreferencesTest {
|
|
|
|
private String oldBoardID;
|
|
|
|
@Before
|
|
public void saveBoardFromPreferences() throws Exception {
|
|
oldBoardID = Preferences.get("board");
|
|
}
|
|
|
|
@After
|
|
public void restoreBoardIntoPreferences() throws Exception {
|
|
Preferences.set("board", oldBoardID);
|
|
Preferences.save();
|
|
}
|
|
|
|
@Test
|
|
public void testDefaultTarget() throws Exception {
|
|
Preferences.set("board", "unreal_board");
|
|
|
|
// should not raise an exception
|
|
new Base(new String[0]);
|
|
|
|
TargetBoard targetBoard = Base.getTargetBoard();
|
|
assertNotEquals("unreal_board", targetBoard.getId());
|
|
}
|
|
}
|