Пример #1
0
        private bool CheckifChefisalreadyvoted(string chef, string text)
        {
            VoteRecipe checkforVote = new VoteRecipe();

            return(checkforVote.AlreadyVoted(chef, text));
        }
Пример #2
0
        public void RecipeVoted()
        {
            VoteRecipe TopRecipeVoteed = new VoteRecipe();

            Assert.That(TopRecipeVoteed.AlreadyVoted("Ivo", "1"), Is.EqualTo(false), "Some useful error message");
        }