Esempio n. 1
0
 @Test(timeout = 120000)
 public void testConstantAcceleration() throws Exception {
   if (verifyNoPropertyViolation(config)) {
     org.apache.commons.math3.filter.KalmanFilterTest object =
         new org.apache.commons.math3.filter.KalmanFilterTest();
     object.testConstantAcceleration();
   }
 }
Esempio n. 2
0
 @Test(timeout = 120000)
 public void testTransitionControlMatrixMismatch() throws Exception {
   if (verifyUnhandledException(
       "org.apache.commons.math3.linear.MatrixDimensionMismatchException", config)) {
     org.apache.commons.math3.filter.KalmanFilterTest object =
         new org.apache.commons.math3.filter.KalmanFilterTest();
     object.testTransitionControlMatrixMismatch();
   }
 }