Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
5answers
4k 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 to, while running ...
9
votes
4answers
493 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) involves making sure ...
7
votes
4answers
470 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 the classes using a ...
5
votes
2answers
201 views

The proper way to do Dependency Injection in a Windows Client (WPF) Application

I am used to IoC/DI in web applications - mainly Ninject with MVC3. My controller is created for me, filled in with all dependencies in place, subdependencies etc. However, things are different in a ...
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++ ...
4
votes
2answers
833 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. I personally think ...
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
376 views

MEF and Factory Pattern

i am trying to refactor my project to improve testability, therefor i'm introducing an abstract factory. My application collects data from different sources by using ICrawlers. These ICrawlers use ...
2
votes
2answers
84 views

On the search for my next great .Net Read

Just got done with "The art of unit testing". It was a great read and i think everyone should go buy a copy. With that said i think the next book I'm like to read would be a architecture / Design type ...
2
votes
4answers
1k 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 Process() { ...
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
121 views

Testable design

I have a java class which has a static member created using Facade (Singleton). Class A implements InterfaceA { private static DataStore db = DataStoreFacade.getInstance("BDB"); //singleton ...
1
vote
6answers
236 views

Constructor Injection, design for testability

I have this code (you probably can ignore that it is Swing code), but I usually end up with too many arguments in my constructor. Should I use model bean class and then pass that object in the ...
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 ...
0
votes
2answers
81 views

Correct design of classes built for testability using constructor injection

Say I have these 3 layers of my code: 1. Database layer (ORM) 2. BusinessLogic 3. Application Now, I write my code as follows: Database layer: This mainly has CURD operations over database. class ...
0
votes
0answers
13 views

What testability problems can be avoided by using two stage initialization?

Specifically, I am asking in context of "Testable Java" article (download here). At page 4-5: People have struggled with the use of constructors throughout the history of OO. One common idiom, in ...
0
votes
0answers
57 views

Installing Testability Driver for QT compiled by msvc

Hi I've built the latest testability driver from scratch using MSVC and QT 4.7.3 VS 2008 edition, everything builds fine but there is no way to run an install (like make install). I've tried to copy ...
0
votes
3answers
204 views

Testable Java Code: using model beans with a constructor

According to Misko Hevery that has a testability blog. Developers should avoid 'holder', 'context', and 'kitchen sink' objects (these take all sorts of other objects and are a grab bag of ...