improved test coverage

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@582683 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-10-07 21:20:20 +00:00
parent 00f7b063b3
commit dac4f4f966
1 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,106 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.math.ode;
import junit.framework.*;
import java.util.Random;
import java.io.ByteArrayOutputStream;
import java.io.ByteArrayInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectInputStream;
import java.io.IOException;
public class DummyStepInterpolatorTest
extends TestCase {
public DummyStepInterpolatorTest(String name) {
super(name);
}
public void testNoReset() {
double[] y = { 0.0, 1.0, -2.0 };
DummyStepInterpolator interpolator = new DummyStepInterpolator(y, true);
interpolator.storeTime(0);
interpolator.shift();
interpolator.storeTime(1);
double[] result = interpolator.getInterpolatedState();
for (int i = 0; i < result.length; ++i) {
assertTrue(Math.abs(result[i] - y[i]) < 1.0e-10);
}
}
public void testFixedState()
throws DerivativeException {
double[] y = { 1.0, 3.0, -4.0 };
DummyStepInterpolator interpolator = new DummyStepInterpolator(y, true);
interpolator.storeTime(0);
interpolator.shift();
interpolator.storeTime(1);
interpolator.setInterpolatedTime(0.1);
double[] result = interpolator.getInterpolatedState();
for (int i = 0; i < result.length; ++i) {
assertTrue(Math.abs(result[i] - y[i]) < 1.0e-10);
}
interpolator.setInterpolatedTime(0.5);
result = interpolator.getInterpolatedState();
for (int i = 0; i < result.length; ++i) {
assertTrue(Math.abs(result[i] - y[i]) < 1.0e-10);
}
}
public void testSerialization()
throws DerivativeException, IntegratorException,
IOException, ClassNotFoundException {
double[] y = { 0.0, 1.0, -2.0 };
DummyStepInterpolator interpolator = new DummyStepInterpolator(y, true);
interpolator.storeTime(0);
interpolator.shift();
interpolator.storeTime(1);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(interpolator);
assertTrue(bos.size () > 150);
assertTrue(bos.size () < 250);
ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
ObjectInputStream ois = new ObjectInputStream(bis);
DummyStepInterpolator dsi = (DummyStepInterpolator) ois.readObject();
dsi.setInterpolatedTime(0.5);
double[] result = dsi.getInterpolatedState();
for (int i = 0; i < result.length; ++i) {
assertTrue(Math.abs(result[i] - y[i]) < 1.0e-10);
}
}
public static Test suite() {
return new TestSuite(DummyStepInterpolatorTest.class);
}
}