-
Notifications
You must be signed in to change notification settings - Fork 5
8. Order of test
Kamruzzaman edited this page Nov 13, 2019
·
1 revision
[Priority(3), DataTestMethod] //<--- Priority ---
[DataRow(1, 2)]
[DataRow(12, 24)]
[DataRow(14, 28)]
[DataRow(0, 0)]
public void NumberOfFruits_DoubleFruits_SinglePerson(int person, int expected)
{
//Act
var original = manual.NumberOfFruits(person);
//Assert
Assert.AreEqual(original, expected);
}