Sha256: cb9925b5304e1642b80172bc39dbba6116650ea03b807f5635f52ce0f317718a
Contents?: true
Size: 856 Bytes
Versions: 28
Compression:
Stored size: 856 Bytes
Contents
// This file was auto-generated based on version 1.1.0 of the canonical data. using Xunit; public class ReverseStringTest { [Fact] public void An_empty_string() { Assert.Equal("", ReverseString.Reverse("")); } [Fact(Skip = "Remove to run test")] public void A_word() { Assert.Equal("tobor", ReverseString.Reverse("robot")); } [Fact(Skip = "Remove to run test")] public void A_capitalized_word() { Assert.Equal("nemaR", ReverseString.Reverse("Ramen")); } [Fact(Skip = "Remove to run test")] public void A_sentence_with_punctuation() { Assert.Equal("!yrgnuh m'I", ReverseString.Reverse("I'm hungry!")); } [Fact(Skip = "Remove to run test")] public void A_palindrome() { Assert.Equal("racecar", ReverseString.Reverse("racecar")); } }
Version data entries
28 entries across 28 versions & 1 rubygems