Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions exercises/all-your-base/AllYourBaseTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was auto-generated based on version 2.0.0 of the canonical data.
// This file was auto-generated based on version 2.0.1 of the canonical data.

using Xunit;
using System;
Expand Down Expand Up @@ -126,7 +126,7 @@ public void Leading_zeros()
}

[Fact(Skip = "Remove to run test")]
public void First_base_is_one()
public void Input_base_is_one()
{
var inputBase = 1;
var inputDigits = new int[0];
Expand All @@ -135,7 +135,7 @@ public void First_base_is_one()
}

[Fact(Skip = "Remove to run test")]
public void First_base_is_zero()
public void Input_base_is_zero()
{
var inputBase = 0;
var inputDigits = new int[0];
Expand All @@ -144,7 +144,7 @@ public void First_base_is_zero()
}

[Fact(Skip = "Remove to run test")]
public void First_base_is_negative()
public void Input_base_is_negative()
{
var inputBase = -2;
var inputDigits = new[] { 1 };
Expand All @@ -171,7 +171,7 @@ public void Invalid_positive_digit()
}

[Fact(Skip = "Remove to run test")]
public void Second_base_is_one()
public void Output_base_is_one()
{
var inputBase = 2;
var inputDigits = new[] { 1, 0, 1, 0, 1, 0 };
Expand All @@ -180,7 +180,7 @@ public void Second_base_is_one()
}

[Fact(Skip = "Remove to run test")]
public void Second_base_is_zero()
public void Output_base_is_zero()
{
var inputBase = 10;
var inputDigits = new[] { 7 };
Expand All @@ -189,7 +189,7 @@ public void Second_base_is_zero()
}

[Fact(Skip = "Remove to run test")]
public void Second_base_is_negative()
public void Output_base_is_negative()
{
var inputBase = 2;
var inputDigits = new[] { 1 };
Expand Down
4 changes: 2 additions & 2 deletions exercises/reverse-string/ReverseStringTest.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// This file was auto-generated based on version 1.0.0 of the canonical data.
// This file was auto-generated based on version 1.0.1 of the canonical data.

using Xunit;

public class ReverseStringTest
{
[Fact]
public void Empty_string()
public void An_empty_string()
{
Assert.Equal("", ReverseString.Reverse(""));
}
Expand Down