public void TestGetCommandReturnsTrueWithExistingSkill() { string skill = "SQL"; InsertSkill ins = new InsertSkill(); string newSkill = ins.FormatSkill(skill); Assert.IsTrue(ins.GetCommand(skill)); }
public void TestFormatSkillReturnsCorrectSkillString() { string skill = "dot net"; InsertSkill ins = new InsertSkill(); string newSkill = ins.FormatSkill(skill); Assert.AreEqual("Dot Net", newSkill); }