Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
2k views

How do I get SpecFlow to expect an exception?

I'm using SpecFlow, and I'd like to write a scenario such as the following: Scenario: Pressing add with an empty stack throws an exception Given I have entered nothing into the calculator ...
3
votes
1answer
44 views

Strange Compiler Error, stating that my iterator is undefined

I'm trying to create a template function which will iterate through the map's specified key/value pairs and check to see if there exists any keys specified in the function's parameters. The ...
1
vote
2answers
210 views

CodeCoverage vs ExpectedException

I've got several unittests of this pattern: [TestMethod ()] [ExpectedException (typeof (ArgumentNullException))] public void DoStuffTest_Exception () { var foo = new Foo (); Foo.DoStuff ...
0
votes
0answers
379 views

Microsoft JScript runtime error: Function expected at second run

I have a very simple javascript code that runs fine the 1st time it is called, and throws the nasty "Microsoft JScript runtime error: Function expected" the second time it runs! function ...