2
votes
2answers
149 views
Extend xUnit.NET to use custom code when processing a class and locating test methods
I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible.
Now let's say that I have a class like so:
public class AdditionSpecification
{
s …
0
votes
1answer
105 views
Use reflection to find the name of a delegate field
Let's say that I have the following delegate:
public delegate void Example();
and a class such as the following:
public class TestClass {
Examp …
3
votes
Can I use a List<T> as a collection of method pointers? (C#)
Using .NET 3.0 (or 3.5?) you have generic delegates.
Try this:
List<Func<int, int, int>> methodsToExecute = new List<Func<int, int, int>>();
methods …
0
votes
Determining if enum value is in list (C#)
You need to use the [Flags] attribute (check here) on your enum; then you can use bitwise and to check for ind …
8
votes
Moving existing code to Test Driven Development
Working Effectively with Legacy Code is my bible when it comes to migrating code without tests into a unit-tested en …
0
votes
Adding functonality to Linq-to-SQL objects to perform common selections
Check out my answer to "switch statement in linq" and see if that points you in the right direction...
The technique i demonstrate there is the one that got me past the scary "no translati …
3
votes
Why does this generic method require T to have a public, parameterless constructor?
Your revised question passes in dataItem as an object of type T and then tries to use it as a type argument to GetList(). Perhaps you pass dataItem in only as a way to specify T?
If so, …
13
votes
What Advantages of Extension Methods have you found?
Two more benefits of extension methods that i have come across:
a fluent interface can be encapsulated in a static class of extension methods, thereby achieving a separation of concer …
5
votes
Why use finally in C#?
finally, as in:
try {
// do something risky
} catch (Exception ex) {
// handle an exception
} finally {
// do any required cleanup
}
is a garunteed opportuni …
0
votes
Extend xUnit.NET to use custom code when processing a class and locating test methods
So it turns out that I was looking for the ITestClassCommand.EnumerateTestMethods() method.
The default xUnit.NET test runner
will iterate over all the classes in
your test assembly …
0
votes
Is there an easy way to add (#) to a filename when you find a duplicate filename?
For a LINQ-ish solution to this, check out Keith Dahlby's recent blog post, " …
