Merge commit '42b2e5ca519766e37ce6941ba4faecc9691cc403' into upstream
[debian/openrocket] / core / test / net / sf / openrocket / util / LinearInterpolatorTest.java
diff --git a/core/test/net/sf/openrocket/util/LinearInterpolatorTest.java b/core/test/net/sf/openrocket/util/LinearInterpolatorTest.java
new file mode 100644 (file)
index 0000000..600f82b
--- /dev/null
@@ -0,0 +1,32 @@
+package net.sf.openrocket.util;
+
+import static org.junit.Assert.*;
+import org.junit.Test;
+
+public class LinearInterpolatorTest {
+
+       @Test
+       public void oldMainTest() {
+               LinearInterpolator interpolator = new LinearInterpolator(
+                               new double[] {1, 1.5, 2, 4, 5},
+                               new double[] {0, 1,   0, 2, 2}
+               );
+               
+               double[] answer = new double[] {
+                               /* x=0 */ 0.00, 0.00, 0.00,     0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00,
+                               /* x=1 */ 0.00, 0.20, 0.40, 0.60, 0.80, 1.00, 0.80, 0.60, 0.40, 0.20,
+                               /* x=2 */ 0.00, 0.10, 0.20, 0.30, 0.40, 0.50, 0.60, 0.70, 0.80, 0.90,
+                               /* x=3 */ 1.00, 1.10, 1.20, 1.30, 1.40, 1.50, 1.60, 1.70, 1.80, 1.90,
+                               /* x=4 */ 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00,
+                               /* x=5 */ 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00, 2.00,
+                               /* x=6 */ 2.00
+               };
+               
+               double x = 0;
+               for (int i=0; i < answer.length; i++) {
+                       assertEquals( "Answer wrong for x = " + x , answer[i], interpolator.getValue(x), 0.01 );
+                       x+= 0.1;
+               }
+
+       }
+}