mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
35 lines
541 B
Java
35 lines
541 B
Java
package org.openpilot.uavtalk;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
|
|
public class SettingsTest {
|
|
|
|
@BeforeClass
|
|
public static void setUpBeforeClass() throws Exception {
|
|
}
|
|
|
|
@Test
|
|
public void testGetDefaultMetadata() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
@Test
|
|
public void testSetDefaultFieldValues() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
@Test
|
|
public void testIsSettings() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
@Test
|
|
public void testGetField() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
}
|