public void GivenQuestionIdAndOptionId_WhenItIsNotValid_ThenShouldNotReturnNextQuestionId() { OptionsRepository m = new OptionsRepository(); int Actual = 3; int expected = m.datafetch(12, 1); Assert.AreNotEqual(Actual, expected); }
public void GivenQuestionIdAndOptionId_WhenItIsValid_ThenReturnCorrespondingNextQuestionId() { OptionsRepository m = new OptionsRepository(); int Actual = 13; int expected = m.datafetch(12, 2); Assert.AreNotEqual(Actual, expected); }