public FizzBuzzAcceptanceTests()
 {
     fizzBuzz = new FizzBuzz();
     commandDictionary = new Dictionary<string, Command>();
     Command getValue = new GetValueFor("getvaluefor",fizzBuzz);
     AddCommand(getValue);
 }
예제 #2
0
 public GetValueFor(string name, FizzBuzz fizzBuzz)
 {
     this.CommandName = name;
     this.fizzBuzz = fizzBuzz;
 }
예제 #3
0
 public void TestSetUp()
 {
     fizzBuzz = new FizzBuzz();
 }