public void EntityNameDoesntContainEntityPartName_ShouldReturnFalse() { bool result = GotoUtils.AutoCompleteWithCamelHumpsMatch("abc", "de"); Assert.IsFalse(result); }
public void EntityPartNameIsTheFirstLetterInWordsByCamelHumps_ShouldReturnTrue() { bool result = GotoUtils.AutoCompleteWithCamelHumpsMatch("AbcDefGh", "AD"); Assert.IsTrue(result); }
public void EntityNameContainEntityPartName_ShouldReturnTrue() { bool result = GotoUtils.AutoCompleteWithCamelHumpsMatch("abc", "b"); Assert.IsTrue(result); }