- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 NUnit 和 Rhino Mocks。我使用 AAA 语法并在设置方法中执行 Arrange 和 Act,每个测试方法都是一个断言。
[TestFixture]
public class When_subSystem_throws_exception
{
SomeClass subject; // System under test
[SetUp]
public void Setup()
{
// Arrange
IDependency dependency = MockRepository.GenerateStub<IDependency>();
dependency.Stub(m => m.DoStuff()).Throw(new Exception()); // This method is called from within SomeMethod()
subject = new SomeClass(dependency);
// Act
subject.SomeMethod("Invalid Input");
}
// Assert
[Test]
public void should_log_an_exception_to_the_logger()
{
// Do stuff to verify that an exception has been logged
}
// More tests
}
如您所料,SomeMethod() 中的代码会抛出一个异常(正如预期的那样),这会使每个测试都失败(不需要)。我通过做解决这个问题
try
{
// Act
subject.SomeMethod("Invalid Input");
}
catch(Exception ex)
{
// Swallow, this exception is expected.
}
但这太丑了。
我想做的是
[SetUp]
[ExpectedException] // <-- this works for Test methods, but not for SetUp methods
public void Setup()
{
// etc...
}
但我找不到类似的东西。
你知道什么吗?
最佳答案
我不认为使用像 ExpectedException
这样的属性是个好主意。SetUp
是为测试方法准备的东西,它不应该抛出异常。如果它必须抛出,并且你想限制代码行数。然后像下面这样把它们放在一行中:
try { subject.SomeMethod("Invalid Input"); }catch { }
关于c# - NUnit 设置中的 ExpectedException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4223343/
我正在尝试验证我所有的异常都是正确的。因为值包装在 CompletableFutures 中,抛出的异常是 ExecutionException,原因是我通常会检查的异常。快速示例: void foo
我在使用 Visual Studio 单元测试框架时遇到了一个非常奇怪的情况。装饰为 [TestMethod, ExpectedException(typeof(InvalidOperationExc
我正在尝试在 C# UnitTest 中使用 ExpectedException 属性,但我在使用我的特定 Exception 时遇到问题>。这是我得到的: 注意:我用星号包裹了给我带来麻烦的行。
是否有 JUnit5 等效于 ExpectedException.expectCause() (JUnit4)? https://junit.org/junit4/javadoc/4.12/org/j
我正在尝试验证返回的异常和消息,但我在此消息中有一个可变的文件名。是否可以只用一种方法使用单元测试来做到这一点? public static string FileName {
我正在 Visual Studio 中进行一些单元测试: /// /// Padding14 should throw an ArgumentOutOfRangeException if strin
我有一个应该测试的方法: public void createNode(String name, String primaryNodeType, String[] mixinNodeTypes) th
我有一个类,用于映射通过 REST 从 json 对象传入的值。前端 javascript 正在制作传入的所有值字符串。如果我只需要字符串值,则使用 Spring 和 Jackson,一切正常。但是,
我在设置一些命令行脚本来测试我正在处理的项目的 NUnit 测试套件时开始遇到问题。 我注意到在 Visual Studio 中运行测试时或 Xamarin结果是我所期望的,但是当使用 nunit-c
我正在使用 NUnit 和 Rhino Mocks。我使用 AAA 语法并在设置方法中执行 Arrange 和 Act,每个测试方法都是一个断言。 [TestFixture] public class
如何在 MSTest 中放置多个 ExpectedExceptionin? 像这样的 [ExpectedException(typeof(ArgumentException))] [ExpectedE
我正在尝试为 InvalidArgumentException 测试我的类,但我得到了 Tests\BarTest::should_receive_parameter Missing argument
我正在尝试使用 JUnit 的 ExpectedExceptions。我已经试过了: public class ExpectedTest { @Rule public Expected
有一个关于 junit 的 ExpectedException 规则的使用的问题: 如此处所建议:junit ExpectedException Rule从 junit 4.7 开始,可以像这样测试异
在 junit 类中,我想测试是否抛出异常,如果没有,则提供一条解释性消息,提示在测试失败时要查找的内容。所以,像... thrown.expect(UnsupportedOperationE
我已经创建了一个类库。 我已经创建了单元测试项目来对一个类进行单元测试。 我上过一门特殊的课 " ExpectedExceptionAttribute Class " 我试图实现它。但是如果我启用
我想要一个 TestMethod 用于多个异常。问题是测试方法在第一次抛出异常后停止。 我知道我可以做这样的事情: try { sAbc.ToInteger(); Assert.Fail();
我有几个这种模式的单元测试: [TestMethod ()] [ExpectedException (typeof (ArgumentNullException))] public void DoSt
我认为这两个测试的行为应该相同,事实上我已经在我的项目中使用 MS Test 编写了测试,现在才发现它不像 NUnit 那样遵守预期的消息。 NUnit(失败): [Test, ExpectedExc
有人在 grails 单元测试中使用过这个注释吗? 似乎对我不起作用。 谢谢。 D 更新:我下面测试的最后一行确实抛出了预期的异常。但是测试失败(堆栈跟踪对于这里来说太大了......)。我正在使用
我是一名优秀的程序员,十分优秀!