|
3 | 3 | public class RomanNumeralsTests |
4 | 4 | { |
5 | 5 | [Fact] |
6 | | - public void Number_1_is_i() |
| 6 | + public void One_is_i() |
7 | 7 | { |
8 | 8 | Assert.Equal("I", 1.ToRoman()); |
9 | 9 | } |
10 | 10 |
|
11 | 11 | [Fact(Skip = "Remove this Skip property to run this test")] |
12 | | - public void Number_2_is_ii() |
| 12 | + public void Two_is_ii() |
13 | 13 | { |
14 | 14 | Assert.Equal("II", 2.ToRoman()); |
15 | 15 | } |
16 | 16 |
|
17 | 17 | [Fact(Skip = "Remove this Skip property to run this test")] |
18 | | - public void Number_3_is_iii() |
| 18 | + public void Three_is_iii() |
19 | 19 | { |
20 | 20 | Assert.Equal("III", 3.ToRoman()); |
21 | 21 | } |
22 | 22 |
|
23 | 23 | [Fact(Skip = "Remove this Skip property to run this test")] |
24 | | - public void Number_4_is_iv() |
| 24 | + public void Four_is_iv() |
25 | 25 | { |
26 | 26 | Assert.Equal("IV", 4.ToRoman()); |
27 | 27 | } |
28 | 28 |
|
29 | 29 | [Fact(Skip = "Remove this Skip property to run this test")] |
30 | | - public void Number_5_is_v() |
| 30 | + public void Five_is_v() |
31 | 31 | { |
32 | 32 | Assert.Equal("V", 5.ToRoman()); |
33 | 33 | } |
34 | 34 |
|
35 | 35 | [Fact(Skip = "Remove this Skip property to run this test")] |
36 | | - public void Number_6_is_vi() |
| 36 | + public void Six_is_vi() |
37 | 37 | { |
38 | 38 | Assert.Equal("VI", 6.ToRoman()); |
39 | 39 | } |
40 | 40 |
|
41 | 41 | [Fact(Skip = "Remove this Skip property to run this test")] |
42 | | - public void Number_9_is_ix() |
| 42 | + public void Nine_is_ix() |
43 | 43 | { |
44 | 44 | Assert.Equal("IX", 9.ToRoman()); |
45 | 45 | } |
46 | 46 |
|
47 | 47 | [Fact(Skip = "Remove this Skip property to run this test")] |
48 | | - public void Number_16_is_xvi() |
| 48 | + public void Sixteen_is_xvi() |
49 | 49 | { |
50 | 50 | Assert.Equal("XVI", 16.ToRoman()); |
51 | 51 | } |
52 | 52 |
|
53 | 53 | [Fact(Skip = "Remove this Skip property to run this test")] |
54 | | - public void Number_27_is_xxvii() |
| 54 | + public void Twenty_seven_is_xxvii() |
55 | 55 | { |
56 | 56 | Assert.Equal("XXVII", 27.ToRoman()); |
57 | 57 | } |
58 | 58 |
|
59 | 59 | [Fact(Skip = "Remove this Skip property to run this test")] |
60 | | - public void Number_48_is_xlviii() |
| 60 | + public void Forty_eight_is_xlviii() |
61 | 61 | { |
62 | 62 | Assert.Equal("XLVIII", 48.ToRoman()); |
63 | 63 | } |
64 | 64 |
|
65 | 65 | [Fact(Skip = "Remove this Skip property to run this test")] |
66 | | - public void Number_49_is_xlix() |
| 66 | + public void Forty_nine_is_xlix() |
67 | 67 | { |
68 | 68 | Assert.Equal("XLIX", 49.ToRoman()); |
69 | 69 | } |
70 | 70 |
|
71 | 71 | [Fact(Skip = "Remove this Skip property to run this test")] |
72 | | - public void Number_59_is_lix() |
| 72 | + public void Fifty_nine_is_lix() |
73 | 73 | { |
74 | 74 | Assert.Equal("LIX", 59.ToRoman()); |
75 | 75 | } |
76 | 76 |
|
77 | 77 | [Fact(Skip = "Remove this Skip property to run this test")] |
78 | | - public void Number_66_is_lxvi() |
| 78 | + public void Sixty_six_is_lxvi() |
79 | 79 | { |
80 | 80 | Assert.Equal("LXVI", 66.ToRoman()); |
81 | 81 | } |
82 | 82 |
|
83 | 83 | [Fact(Skip = "Remove this Skip property to run this test")] |
84 | | - public void Number_93_is_xciii() |
| 84 | + public void Ninety_three_is_xciii() |
85 | 85 | { |
86 | 86 | Assert.Equal("XCIII", 93.ToRoman()); |
87 | 87 | } |
88 | 88 |
|
89 | 89 | [Fact(Skip = "Remove this Skip property to run this test")] |
90 | | - public void Number_141_is_cxli() |
| 90 | + public void One_hundred_and_forty_one_is_cxli() |
91 | 91 | { |
92 | 92 | Assert.Equal("CXLI", 141.ToRoman()); |
93 | 93 | } |
94 | 94 |
|
95 | 95 | [Fact(Skip = "Remove this Skip property to run this test")] |
96 | | - public void Number_163_is_clxiii() |
| 96 | + public void One_hundred_and_sixty_three_is_clxiii() |
97 | 97 | { |
98 | 98 | Assert.Equal("CLXIII", 163.ToRoman()); |
99 | 99 | } |
100 | 100 |
|
101 | 101 | [Fact(Skip = "Remove this Skip property to run this test")] |
102 | | - public void Number_166_is_clxvi() |
| 102 | + public void One_hundred_and_sixty_six_is_clxvi() |
103 | 103 | { |
104 | 104 | Assert.Equal("CLXVI", 166.ToRoman()); |
105 | 105 | } |
106 | 106 |
|
107 | 107 | [Fact(Skip = "Remove this Skip property to run this test")] |
108 | | - public void Number_402_is_cdii() |
| 108 | + public void Four_hundred_and_two_is_cdii() |
109 | 109 | { |
110 | 110 | Assert.Equal("CDII", 402.ToRoman()); |
111 | 111 | } |
112 | 112 |
|
113 | 113 | [Fact(Skip = "Remove this Skip property to run this test")] |
114 | | - public void Number_575_is_dlxxv() |
| 114 | + public void Five_hundred_and_seventy_five_is_dlxxv() |
115 | 115 | { |
116 | 116 | Assert.Equal("DLXXV", 575.ToRoman()); |
117 | 117 | } |
118 | 118 |
|
119 | 119 | [Fact(Skip = "Remove this Skip property to run this test")] |
120 | | - public void Number_666_is_dclxvi() |
| 120 | + public void Six_hundred_and_sixty_six_is_dclxvi() |
121 | 121 | { |
122 | 122 | Assert.Equal("DCLXVI", 666.ToRoman()); |
123 | 123 | } |
124 | 124 |
|
125 | 125 | [Fact(Skip = "Remove this Skip property to run this test")] |
126 | | - public void Number_911_is_cmxi() |
| 126 | + public void Nine_hundred_and_eleven_is_cmxi() |
127 | 127 | { |
128 | 128 | Assert.Equal("CMXI", 911.ToRoman()); |
129 | 129 | } |
130 | 130 |
|
131 | 131 | [Fact(Skip = "Remove this Skip property to run this test")] |
132 | | - public void Number_1024_is_mxxiv() |
| 132 | + public void One_thousand_and_twenty_four_is_mxxiv() |
133 | 133 | { |
134 | 134 | Assert.Equal("MXXIV", 1024.ToRoman()); |
135 | 135 | } |
136 | 136 |
|
137 | 137 | [Fact(Skip = "Remove this Skip property to run this test")] |
138 | | - public void Number_1666_is_mdclxvi() |
| 138 | + public void One_thousand_six_hundred_and_sixty_six_is_mdclxvi() |
139 | 139 | { |
140 | 140 | Assert.Equal("MDCLXVI", 1666.ToRoman()); |
141 | 141 | } |
142 | 142 |
|
143 | 143 | [Fact(Skip = "Remove this Skip property to run this test")] |
144 | | - public void Number_3000_is_mmm() |
| 144 | + public void Three_thousand_is_mmm() |
145 | 145 | { |
146 | 146 | Assert.Equal("MMM", 3000.ToRoman()); |
147 | 147 | } |
148 | 148 |
|
149 | 149 | [Fact(Skip = "Remove this Skip property to run this test")] |
150 | | - public void Number_3001_is_mmmi() |
| 150 | + public void Three_thousand_and_one_is_mmmi() |
151 | 151 | { |
152 | 152 | Assert.Equal("MMMI", 3001.ToRoman()); |
153 | 153 | } |
154 | 154 |
|
155 | 155 | [Fact(Skip = "Remove this Skip property to run this test")] |
156 | | - public void Number_3888_is_mmmdccclxxxviii() |
| 156 | + public void Three_thousand_eight_hundred_and_eighty_eight_is_mmmdccclxxxviii() |
157 | 157 | { |
158 | 158 | Assert.Equal("MMMDCCCLXXXVIII", 3888.ToRoman()); |
159 | 159 | } |
160 | 160 |
|
161 | 161 | [Fact(Skip = "Remove this Skip property to run this test")] |
162 | | - public void Number_3999_is_mmmcmxcix() |
| 162 | + public void Three_thousand_nine_hundred_and_ninety_nine_is_mmmcmxcix() |
163 | 163 | { |
164 | 164 | Assert.Equal("MMMCMXCIX", 3999.ToRoman()); |
165 | 165 | } |
|
0 commit comments