Need at least one runnable unit test

This commit is contained in:
SiboVG 2023-04-11 16:34:22 +02:00
parent ea29038b11
commit 884959a98e
2 changed files with 14 additions and 0 deletions

View File

@ -1,6 +1,13 @@
package net.sf.openrocket.file.rasaero.export;
import org.junit.Test;
public class RASAeroMotorExportTest {
// TODO: check correct name after export
// TODO: check 0-delay motors (should have -0 suffix)
@Test
public void dummy() {
// We need at least one runnable test method
}
}

View File

@ -1,7 +1,14 @@
package net.sf.openrocket.file.rasaero.export;
import org.junit.Test;
public class RASAeroSaverTest {
// TODO: export a complex design
// TODO: check recovery
// TODO: check sims (including weights and CG)
@Test
public void dummy() {
// We need at least one runnable test method
}
}