XUnit.net çerçevesinde NUnit'in aşağıdaki özelliklerine benzer herhangi bir yol var mı?
[Test, TestCaseSource("CurrencySamples")]
public void Format_Currency(decimal value, string expected){}
static object[][] CurrencySamples = new object[][]
{
new object[]{ 0m, "0,00"},
new object[]{ 0.0004m, "0,00"},
new object[]{ 5m, "5,00"},
new object[]{ 5.1m, "5,10"},
new object[]{ 5.12m, "5,12"},
new object[]{ 5.1234m, "5,12"},
new object[]{ 5.1250m, "5,13"}, // round
new object[]{ 5.1299m, "5,13"}, // round
}
Bu, NUnit GUI'de 8 ayrı test oluşturacaktır.
[TestCase((string)null, Result = "1")]
[TestCase("", Result = "1")]
[TestCase(" ", Result = "1")]
[TestCase("1", Result = "2")]
[TestCase(" 1 ", Result = "2")]
public string IncrementDocNumber(string lastNum) { return "some"; }
Bu, 5 ayrı test oluşturacak ve sonuçları otomatik olarak karşılaştıracaktır ( Assert.Equal()
).
[Test]
public void StateTest(
[Values(1, 10)]
int input,
[Values(State.Initial, State.Rejected, State.Stopped)]
DocumentType docType
){}
Bu, 6 kombinatoryal test oluşturacaktır. Paha biçilemez.
Birkaç yıl önce xUnit'i denedim ve sevdim ama bu özelliklerden yoksundu. Onlar olmadan yaşayamam. Bir şey mi değişti?