public void TestingValidateLongingString_FulltimeEmployee_Exception()
       {
           bool status = false;
           string[] testData = new string[7] {
                "qwer",
                "drfdgf",
                "246 054 284",
                "1997/3/14",
                "2000/12/12",
                "2013/10/9",
                "604043.34"
            };


           try
           {
               FulltimeEmployee testEmployee = new FulltimeEmployee(testData);
               status = testEmployee.SuccessLogString();
           }
           catch (EmployeeException eee)
           {
               string errors = eee.GetError();
           }
           Assert.AreEqual(false, status);
       }