Tagged Questions
The expectedexception tag has no wiki summary.
6
votes
1answer
73 views
Strange behavior with NUnit, ExpectedException & yield return
I have a strange behavior in a tests where I want to test that an exception is thrown when null is passed in as a parameter. When I run the test I get from NUnit:
System.ArgumentNullException was ...
3
votes
1answer
265 views
How do I use ExpectedException in C++/CLI NUnit tests?
How do you do the equivalent of:
[Test, ExpectedException( typeof(ArgumentOutOfRangeException) )]
void Test_Something_That_Throws_Exception()
{
throw gcnew ArgumentOutOfRangeException("Some more ...
3
votes
2answers
305 views
ExpectedException in jUnit?
Is there an equivalent to NUnit's ExpectedException or Assert.Throws<> in jUnit?
2
votes
1answer
1k views
@ExpectedException in grails unit tests
Anyone used this annotation in grails unit tests?
Didnt seem to work for me.
Thanks.
D
Update: the last line of my test below does throw the expected exception. However the test fails (Stack trace ...
1
vote
1answer
46 views
Is there a way to provide failure message with ExpectedException attribute?
I want to provide a message when assertion has failed but, I can't a way to do it.
[Test]
public void CreateInstanceTest()
{
SomeClass someClass = new SomeClass();
...
1
vote
1answer
95 views
Mbunit Factory attribute with ExpectedException
Is there a way to write that I'm expecting a certain exception for certain inputs when I use the Factory attribute?
I know how to do it using the Row attribute but I need it for dynamically generated ...
1
vote
2answers
376 views
MS Test : How do I enforce exception message with ExpectedException attribute
I thought these two tests should behave identically, in fact I have written the test in my project using MS Test only to find out now that it does not respect the expected message in the same way that ...
0
votes
4answers
276 views
Exception in MS Unit Test?
I created a unit test for a method of my project. That method raises an exception when a file is not found. I wrote a unit test for that, but I'm still not able to pass the test when the exception is ...
0
votes
2answers
250 views
PHPUnit: continue after die, expect “die” or somehow handle die()? [closed]
Possible Duplicate:
How do you use PHPUnit to test a function if that function is supposed to kill PHP?
I'm writing some unit tests. The system I'm currently testing is a web-app in an MVC ...
0
votes
1answer
219 views
NUnit - ExpectedMessage differs error
I am quite new to TDD and am going with NUnit and Moq. I have got a method where I expect an exception, so I wanted to play a little with the frameworks features.
My test code looks as follows:
...