1
vote
3answers
99 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 wit …
6
votes
4answers
162 views
Patterns for making c++ code easy to test
Should you design your code to make testing easier? And if so how to design c++ code so that it is easy to test.
How do you apply dependency-injection in c++?
Should I implement …
1
vote
4answers
203 views
Is it ok to use #if debug directive in C#?
We have a class a class that looks something like the following:
public class Processor
{
//set timeout in seconds
private const int TIMEOUT = 600;
public void Proces …
5
votes
3answers
108 views
Do Extension Methods Hide Dependencies?
All,
Wanted to get a few thoughts on this. Lately I am becoming more and more of a subscriber of "purist" DI/IOC principles when designing/developing. Part of this (a big part) i …
14
votes
8answers
2k 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 does …
3
votes
2answers
203 views
Should static classes be avoided because it makes Dependency Injection Difficult?
Somebody tasked with creating a "Core" set of libraries created a set of static classes providing all sorts of utilities from logging, auditing and common database access methods.
…
5
votes
5answers
419 views
inheritance vs. composition for testability
While designing my objects I find composition to be a better choice from the perspective of testability. The reason being, I can mock parts of the composition structure if I need t …
2
votes
1answer
90 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 li …
4
votes
2answers
417 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 vi …
