Ejemplo n.º 1
0
        public void TestGetCommandReturnsTrueWithExistingSkill()
        {
            string      skill    = "SQL";
            InsertSkill ins      = new InsertSkill();
            string      newSkill = ins.FormatSkill(skill);

            Assert.IsTrue(ins.GetCommand(skill));
        }
Ejemplo n.º 2
0
        public void TestFormatSkillReturnsCorrectSkillString()
        {
            string      skill    = "dot net";
            InsertSkill ins      = new InsertSkill();
            string      newSkill = ins.FormatSkill(skill);

            Assert.AreEqual("Dot Net", newSkill);
        }