コード例 #1
0
 public void The_sound_for_52_is_52()
 {
     Assert.Equal("52", Gocce.Convert(52));
 }
コード例 #2
0
 public void The_sound_for_35_is_tactoc_as_it_has_factors_5_and_7()
 {
     Assert.Equal("tactoc", Gocce.Convert(35));
 }
コード例 #3
0
 public void The_sound_for_49_is_toc_as_it_has_a_factor_7()
 {
     Assert.Equal("toc", Gocce.Convert(49));
 }
コード例 #4
0
 public void The_sound_for_25_is_tac_as_it_has_a_factor_5()
 {
     Assert.Equal("tac", Gocce.Convert(25));
 }
コード例 #5
0
 public void The_sound_for_27_is_tic_as_it_has_a_factor_3()
 {
     Assert.Equal("tic", Gocce.Convert(27));
 }
コード例 #6
0
 public void The_sound_for_21_is_tictoc_as_it_has_factors_3_and_7()
 {
     Assert.Equal("tictoc", Gocce.Convert(21));
 }
コード例 #7
0
 public void The_sound_for_1_is_1()
 {
     Assert.Equal("1", Gocce.Convert(1));
 }
コード例 #8
0
 public void The_sound_for_14_is_toc_as_it_has_a_factor_of_7()
 {
     Assert.Equal("toc", Gocce.Convert(14));
 }
コード例 #9
0
 public void The_sound_for_15_is_tictac_as_it_has_factors_3_and_5()
 {
     Assert.Equal("tictac", Gocce.Convert(15));
 }
コード例 #10
0
 public void Number_2_to_the_power_3_does_not_make_a_raindrop_sound_as_3_is_the_exponent_not_the_base()
 {
     Assert.Equal("8", Gocce.Convert(8));
 }
コード例 #11
0
 public void The_sound_for_7_is_toc()
 {
     Assert.Equal("toc", Gocce.Convert(7));
 }
コード例 #12
0
 public void The_sound_for_5_is_tac()
 {
     Assert.Equal("tac", Gocce.Convert(5));
 }
コード例 #13
0
 public void The_sound_for_3_is_tic()
 {
     Assert.Equal("tic", Gocce.Convert(3));
 }
コード例 #14
0
 public void The_sound_for_105_is_tictactoc_as_it_has_factors_3_5_and_7()
 {
     Assert.Equal("tictactoc", Gocce.Convert(105));
 }