public void Test_TrimLeft() { string str; str = GEDCOMUtils.TrimLeft(" test1"); Assert.AreEqual("test1", str); str = GEDCOMUtils.TrimLeft(null); Assert.AreEqual("", str); }