Github user nickwallen commented on a diff in the pull request:

    https://github.com/apache/incubator-metron/pull/250#discussion_r78633816
  
    --- Diff: 
metron-platform/metron-common/src/test/java/org/apache/metron/common/stellar/StellarStatisticsFunctionsTest.java
 ---
    @@ -215,10 +261,11 @@ public void testSumSquares() throws Exception {
         assertEquals(stats.getSumsq(), (Double) actual, 0.1);
       }
     
    -  @Test(expected = ParseException.class)
    +  @Test
       public void testKurtosisNoWindow() throws Exception {
         statsInit(0);
    -    run("STATS_KURTOSIS(stats)", variables);
    +    Object actual = run("STATS_KURTOSIS(stats)", variables);
    +    assertEquals(stats.getKurtosis(), (Double) actual, 0.1);
       }
    --- End diff --
    
    I think you can get rid of all the "test*[No]Window" tests (for skewness, 
percentile, and kurtosis) and replace them with a single test just like the 
others (max, min, count, etc) that test both scenarios.  Those were created 
only for tests where there was a behavioral difference between the 'windowed' 
versus 'non-windowed' implementation. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to