Esempio n. 1
0
 public void SayFizzWhenDivisibleByThree()
 {
     int[] tests = { 3, 6, 9, 12 };
     foreach (int n in tests)
     {
         Assert.Equal(game.Fizz, game.WhatIs(n));
     }
 }