Remove duplicate test in issue 237

This commit is contained in:
Matthew Malkin 2016-07-16 16:40:06 +01:00 коммит произвёл GitHub
Родитель e8cf9c178b
Коммит c086dae126
1 изменённых файлов: 1 добавлений и 14 удалений

Просмотреть файл

@ -36,19 +36,6 @@ namespace NSubstitute.Acceptance.Specs.FieldReports
});
}
[Test]
public void MethodCallsAreReceivedInOrder2()
{
IAmAnInterface _interface = Substitute.For<IAmAnInterface>();
_interface.MethodA(1, 2);
_interface.MethodB(1, 2);
Received.InOrder(() =>
{
_interface.MethodA(1, 2);
_interface.MethodB(1, 2);
});
}
[Test]
public void AfterTheFailingTestIsRunWhenTheSuccessfulTestIsRunTheSuccessfulTestShouldSucceed()
{
@ -78,4 +65,4 @@ namespace NSubstitute.Acceptance.Specs.FieldReports
foo.MethodC().Returns(1);
}
}
}
}