The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
134 views

Expected Exception JUNIT

i want to add an object in DB than check if the object is already there so we can't add it twice. I used JUNIT to test it: @org.junit.Test (expected = ExistingProduct.class) public void AddExisting() ...
0
votes
3answers
155 views

Should I use nunit's Assert.Throws method or Expected Exception attribute?

I noticed these seemed to be the two main ways of testing for exceptions. Assert.Throws(()=>MethodThatThrows()); [ExpectedException(typeof(Exception))] I was wondering which of these would be best? ...
0
votes
2answers
42 views

How to indicate that I don't expect an exception in JUnit?

In google test, we have an EXPECT_NO_THROW(x.foo()); How can I do this in JUnit? The thing I want to avoid is having to write a try/catch block, and to specify that my test function would throw ...
2
votes
1answer
107 views

How can a create a test case in ASP.NET C# for DatabaseConnection Error using ExpectedException?

I want to create a test case for Database Connection Error. Any ideas how to do this?
0
votes
0answers
95 views

How do I deal with expected 'native' exceptions in C++/CLI unit tests?

I am using a C++/CLI test project in Visual Studio to test a C++/CLI class library. One of the functions in the class library should throw an exception when it is fed an invalid argument, and I want ...
0
votes
1answer
78 views

MSTest [TestMethod] fails even when code to test catches and does not rethrow the exception?

I am using MSTest and in a [TestMethod] I have an object whose code throws an exception and I catch it; in certain circumstances, I re-throw it, other times I don't, but the test always fails ...
7
votes
1answer
389 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 ...
1
vote
1answer
139 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 figure out a way to do it. [Test] public void CreateInstanceTest() { SomeClass someClass = new SomeClass(); ...
1
vote
1answer
285 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
4answers
1k 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 ...
2
votes
4answers
1k views

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
2answers
709 views

PHPUnit: continue after die, expect “die” or somehow handle die()? [duplicate]

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 ...
2
votes
2answers
565 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: ...
5
votes
1answer
3k 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 ...
3
votes
1answer
425 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 ...
8
votes
4answers
2k views

ExpectedException in jUnit?

Is there an equivalent to NUnit's ExpectedException or Assert.Throws<> in jUnit?