/** Test of getMethName method, of class StatisticsFreqPeriod. */
 @Test
 public void testGetMethName() {
   System.out.println("getMethName");
   StatisticsFreqPeriod instance = new StatisticsFreqPeriod();
   String expResult = "StatisticsFreqPeriod";
   String result = instance.getMethName();
   assertEquals(expResult, result);
 }