私は最近、nUnit の流暢なインターフェースに触れてきましたが、とても気に入っています。ただし、msTest を使用しています。
フレームワークに依存しない、またはmsTest用のテストである流暢なインターフェースがあるかどうかは誰にも分かりますか?
私は最近、nUnit の流暢なインターフェースに触れてきましたが、とても気に入っています。ただし、msTest を使用しています。
フレームワークに依存しない、またはmsTest用のテストである流暢なインターフェースがあるかどうかは誰にも分かりますか?
Fluent アサーションを参照してください。次のようなことができます
"ABCDEFGHI".Should().StartWith("AB").And.EndWith("HI").And.Contain("EF").And.HaveLength(9);
new[] { 1, 2, 3 }.Should().HaveCount(4, "because we thought we put three items in the
collection"))
dtoCollection.Should().Contain(dto => dto.Id != null);
collection.Should().HaveCount(c => c >= 3);
dto.ShouldHave().AllPropertiesBut(d => d.Id).EqualTo(customer);
dt1.Should().BeWithin(TimeSpan.FromHours(50)).Before(dt2);
Action action = () => recipe.AddIngredient("Milk", 100, Unit.Spoon);
action
.ShouldThrow<RuleViolationException>()
.WithMessage("Cannot change the unit of an existing ingredient")
.And.Violations.Should().Contain(BusinessRule.CannotChangeIngredientQuanity
http://sharptestex.codeplex.com/を参照してください。
注: SharpTestsEx は積極的に開発されていないようです。推奨される代替手段はhttp://www.fluentassertions.com/です。
SharpTestsEx (Sharp Tests Extensions) は、拡張可能な拡張機能のセットです。主な目標は、Visual Studio IDE の IntelliSense がガイドとなる短いアサーションを作成することです。#TestsEx は、NUnit、MsTests、xUnit、MbUnit などで使用できます。Silverlight でも使用できます。
強く型付けされたアサーションの構文例 (Web ページから取得):
true.Should().Be.True();
false.Should().Be.False();
const string something = "something";
something.Should().Contain("some");
something.Should().Not.Contain("also");
something.ToUpperInvariant().Should().Not.Contain("some");
something.Should()
.StartWith("so")
.And
.EndWith("ing")
.And
.Contain("meth");
something.Should()
.Not.StartWith("ing")
.And
.Not.EndWith("so")
.And
.Not.Contain("body");
var ints = new[] { 1, 2, 3 };
ints.Should().Have.SameSequenceAs(new[] { 1, 2, 3 });
ints.Should().Not.Have.SameSequenceAs(new[] { 3, 2, 1 });
ints.Should().Not.Be.Null();
ints.Should().Not.Be.Empty();
ints.Should()
.Contain(2)
.And
.Not.Contain(4);
(new int[0]).Should().Be.Empty();
私の調査に基づくと、1つもありませんが、アサートが失敗した理由に関してより良いレポート可能性を犠牲にする意思があり、新しいdllを追加する意思がある場合は、nunitを参照してそれらを使用できます....