コード例 #1
0
 public FizzBuzzAcceptanceTests()
 {
     fizzBuzz = new FizzBuzz();
     commandDictionary = new Dictionary<string, Command>();
     Command getValue = new GetValueFor("getvaluefor",fizzBuzz);
     AddCommand(getValue);
 }
コード例 #2
0
ファイル: GetValueFor.cs プロジェクト: Kornetzke/ConceptTests
 public GetValueFor(string name, FizzBuzz fizzBuzz)
 {
     this.CommandName = name;
     this.fizzBuzz = fizzBuzz;
 }
コード例 #3
0
 public void TestSetUp()
 {
     fizzBuzz = new FizzBuzz();
 }