コード例 #1
0
 @Test(timeout = 1000000)
 public void testNoNaNsFailed() throws Exception {
   if (verifyNoPropertyViolation(config)) {
     org.apache.commons.math3.stat.ranking.NaturalRankingTest object =
         new org.apache.commons.math3.stat.ranking.NaturalRankingTest();
     object.testNoNaNsFailed();
   }
 }
コード例 #2
0
 @Test(timeout = 1000000)
 public void testNaNsFailed() throws Exception {
   if (verifyUnhandledException(
       "org.apache.commons.math3.exception.NotANumberException", config)) {
     org.apache.commons.math3.stat.ranking.NaturalRankingTest object =
         new org.apache.commons.math3.stat.ranking.NaturalRankingTest();
     object.testNaNsFailed();
   }
 }