From 2e8157ffbb70811bb1f4e78f206a76fb6cb875e3 Mon Sep 17 00:00:00 2001 From: Rob Keim Date: Sat, 18 Nov 2017 23:11:34 +0700 Subject: [PATCH] Update canonical data for All Your Base and Reverse String --- exercises/all-your-base/AllYourBaseTest.cs | 14 +++++++------- exercises/reverse-string/ReverseStringTest.cs | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/exercises/all-your-base/AllYourBaseTest.cs b/exercises/all-your-base/AllYourBaseTest.cs index 7bab626460..ce7b91a491 100644 --- a/exercises/all-your-base/AllYourBaseTest.cs +++ b/exercises/all-your-base/AllYourBaseTest.cs @@ -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; @@ -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]; @@ -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]; @@ -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 }; @@ -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 }; @@ -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 }; @@ -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 }; diff --git a/exercises/reverse-string/ReverseStringTest.cs b/exercises/reverse-string/ReverseStringTest.cs index ebcad24739..d1b253bdc6 100644 --- a/exercises/reverse-string/ReverseStringTest.cs +++ b/exercises/reverse-string/ReverseStringTest.cs @@ -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("")); }