15

我最近接触了 nUnit 中的流利界面,我喜欢它;但是,我正在使用 msTest。

有谁知道是否有一个流畅的接口是测试框架不可知的还是用于 msTest 的?

4

3 回答 3

17

请参阅流利的断言。你可以做类似的事情

"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
于 2010-08-08T14:14:40.623 回答
5

http://sharptestex.codeplex.com/

注意:SharpTestsEx 似乎不再积极开发,推荐的替代方法是http://www.fluentassertions.com/

SharpTestsEx(Sharp Tests Extensions)是一组可扩展的扩展。主要目标是编写以 Visual Studio IDE 智能感知为指导的简短断言。#TestsEx 可以与 NUnit、MsTests、xUnit、MbUnit 一起使用……甚至在 Silverlight 中。

强类型断言的语法示例(取自网页):

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();
于 2010-01-12T10:34:28.247 回答
0

根据我的研究,没有,但是如果您愿意牺牲更好的可报告性至于断言失败的原因并愿意添加新的 dll,您可以参考 nunit 并使用他们的....

于 2008-12-08T04:09:14.070 回答