Tagged Questions

37
votes
13answers
11k views

Java: How to test methods that call System.exit()?

I've got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, ...
14
votes
2answers
1k views

Asp.net MVC View Testing?

With more and more code pushed to the Views in Asp.Net MVC (i.e. AJAX, JQuery, etc...), how do you maintain the 'testability'? How do you test your Views? How do you test your views with client-side ...
4
votes
4answers
266 views

It is possible/productive enough to TDD in C++ projects?

I want to know if anyone of you guys use TDD in your c++ projects and how it performs compared to managed languages like C# and Java. And what frameworks you guys are using to automate tests on c++ ...
2
votes
2answers
75 views

Where to move constructing of disposable dependencies to improve testability?

In my unit tests, I use things like AssemblyInitialize, ClassInitialize and TestInitialize to configure my tests. In AssemblyInitialize I initialize some singleton factories for creating services, a ...
2
votes
1answer
108 views

What's the right way, for testability, to add functionality to a ComboBox?

The desired functionality of the 'enhanced' combo box is a quick find method. Each item in the combobox has a ToString() method, such that they can be displayed in the drop down list. On clicking an ...
1
vote
2answers
250 views

How to test Controller Action that uses JSON string from Request.Form?

I have an Action that gets JSON data from Request.Form[0] and has calls into domain objects. I am testing this method, but it seems impossible to set Request.Form. I could extract the method to ...
1
vote
4answers
220 views

Creating testable code

I have a file - in a large legacy codebase - containing methods that access databases. No classes are used, just a header file with the method declarations, and the source file with the ...