1- // This file was auto-generated based on version 2.0.0 of the canonical data.
1+ // This file was auto-generated based on version 2.0.1 of the canonical data.
22
33using Xunit ;
44using System ;
@@ -126,7 +126,7 @@ public void Leading_zeros()
126126 }
127127
128128 [ Fact ( Skip = "Remove to run test" ) ]
129- public void First_base_is_one ( )
129+ public void Input_base_is_one ( )
130130 {
131131 var inputBase = 1 ;
132132 var inputDigits = new int [ 0 ] ;
@@ -135,7 +135,7 @@ public void First_base_is_one()
135135 }
136136
137137 [ Fact ( Skip = "Remove to run test" ) ]
138- public void First_base_is_zero ( )
138+ public void Input_base_is_zero ( )
139139 {
140140 var inputBase = 0 ;
141141 var inputDigits = new int [ 0 ] ;
@@ -144,7 +144,7 @@ public void First_base_is_zero()
144144 }
145145
146146 [ Fact ( Skip = "Remove to run test" ) ]
147- public void First_base_is_negative ( )
147+ public void Input_base_is_negative ( )
148148 {
149149 var inputBase = - 2 ;
150150 var inputDigits = new [ ] { 1 } ;
@@ -171,7 +171,7 @@ public void Invalid_positive_digit()
171171 }
172172
173173 [ Fact ( Skip = "Remove to run test" ) ]
174- public void Second_base_is_one ( )
174+ public void Output_base_is_one ( )
175175 {
176176 var inputBase = 2 ;
177177 var inputDigits = new [ ] { 1 , 0 , 1 , 0 , 1 , 0 } ;
@@ -180,7 +180,7 @@ public void Second_base_is_one()
180180 }
181181
182182 [ Fact ( Skip = "Remove to run test" ) ]
183- public void Second_base_is_zero ( )
183+ public void Output_base_is_zero ( )
184184 {
185185 var inputBase = 10 ;
186186 var inputDigits = new [ ] { 7 } ;
@@ -189,7 +189,7 @@ public void Second_base_is_zero()
189189 }
190190
191191 [ Fact ( Skip = "Remove to run test" ) ]
192- public void Second_base_is_negative ( )
192+ public void Output_base_is_negative ( )
193193 {
194194 var inputBase = 2 ;
195195 var inputDigits = new [ ] { 1 } ;
0 commit comments