I want to test the following method in C# for all code paths.
public int foo (int x) { if(x == 1) return 1; if(x==2) return 2; else
If using NUnit parameterized tests is the way to go