Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
@@ -0,0 +1,47 @@
package jmri.jmrix.rps;
import javax.vecmath.Point3d;
import org.junit.jupiter.api.*;
/**
* JUnit tests for the rps.Analytic_AAlgorithm class.
*
*
* @author Bob Jacobsen Copyright 2008
*/
public class Analytic_AAlgorithmTest extends AbstractAlgorithmTestBase {
@Override
Calculator getAlgorithm(Point3d[] pts, double vs) {
return new Analytic_AAlgorithm(pts, vs);
}
@Test
@Disabled("fails for unknown reasons")
@Override
public void testCalc4() {
super.testCalc4();
}
@Test
@Disabled("fails for unknown reasons")
@Override
public void testCalc5() {
super.testCalc5();
}
@Test
@Disabled("fails for unknown reasons")
@Override
public void testCalc6() {
super.testCalc6();
}
@Test
@Disabled("fails for unknown reasons")
@Override
public void testCalc7() {
super.testCalc7();
}
}