public void TestingValidateLongingString_SeasonalEmployee_Exception()
       {
           bool status = false;
           string[] testData = new string[6] {
                "qwer",
                "drfdgf",
                "246 454 284",
                "1997/3/14",
                "dfser",
                "45.34"
            };


           try
           {
               SeasonalEmployee testEmployee = new SeasonalEmployee(testData);
               status = testEmployee.SuccessLogString();
           }
           catch (EmployeeException ee)
           {
               string errors = ee.GetError();
           }



           Assert.AreEqual(false, status);
       }