Skip to content

Commit ac90944

Browse files
robkeimErikSchierboom
authored andcommitted
Update canonical data for All Your Base and Reverse String (#495)
1 parent 47db68b commit ac90944

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

exercises/all-your-base/AllYourBaseTest.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

33
using Xunit;
44
using 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 };

exercises/reverse-string/ReverseStringTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// This file was auto-generated based on version 1.0.0 of the canonical data.
1+
// This file was auto-generated based on version 1.0.1 of the canonical data.
22

33
using Xunit;
44

55
public class ReverseStringTest
66
{
77
[Fact]
8-
public void Empty_string()
8+
public void An_empty_string()
99
{
1010
Assert.Equal("", ReverseString.Reverse(""));
1111
}

0 commit comments

Comments
 (0)