public void TestingValidateLongingString_ContractEmployee_Normal()
        {
            string[] testData = new string[7] {
                "Tamool",
                "Jim",
                "123456782",
                "1995/3/4",
                "2000/12/12",
                "2013/10/9",
                "-6a04043.34"
            };

            ContractEmployee testEmployee = new ContractEmployee();

            try
            {
                bool status = testEmployee.SuccessLogString();
                Assert.AreEqual(false, status);
            }
            catch (Exception e)
            {
                Assert.AreEqual(true, true);

            }

        }