unit-testing
Tipi di asserzione
Ricerca…
Verifica di un valore restituito
[Test]
public void Calculator_Add_ReturnsSumOfTwoNumbers()
{
Calculator calculatorUnderTest = new Calculator();
double result = calculatorUnderTest.Add(2, 3);
Assert.AreEqual(5, result);
}
Test basati sullo stato
Data questa semplice classe, possiamo verificare che il metodo ShaveHead
correttamente affermando che lo stato della variabile HairLength
è impostato su zero dopo la ShaveHead
metodo ShaveHead
.
public class Person
{
public string Name;
public int HairLength;
public Person(string name, int hairLength)
{
this.Name = name;
this.HairLength = hairLength;
}
public void ShaveHead()
{
this.HairLength = 0;
}
}
[Test]
public void Person_ShaveHead_SetsHairLengthToZero()
{
Person personUnderTest = new Person("Danny", 10);
personUnderTest.ShaveHead();
int hairLength = personUnderTest.HairLength;
Assert.AreEqual(0, hairLength);
}
Verifica di un'eccezione generata
A volte è necessario affermare quando viene lanciata un'eccezione. Diversi quadri di test unitario hanno diverse convenzioni per affermare che è stata lanciata un'eccezione (come il metodo Assert.Throws di NUnit). Questo esempio non utilizza alcun metodo specifico per il framework, ma solo la gestione delle eccezioni.
[Test]
public void GetItem_NegativeNumber_ThrowsArgumentInvalidException
{
ShoppingCart shoppingCartUnderTest = new ShoppingCart();
shoppingCartUnderTest.Add("apple");
shoppingCartUnderTest.Add("banana");
double invalidItemNumber = -7;
bool exceptionThrown = false;
try
{
shoppingCartUnderTest.GetItem(invalidItemNumber);
}
catch(ArgumentInvalidException e)
{
exceptionThrown = true;
}
Assert.True(exceptionThrown);
}
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow