Tagged Questions
4
votes
2answers
832 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
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 ...