Sha256: b338371804ca4a3fdcf5d7f2384a8c8dd9e19010e0c8433ec782ab5bcbc80eae
Contents?: true
Size: 856 Bytes
Versions: 82
Compression:
Stored size: 856 Bytes
Contents
// This file was auto-generated based on version 1.0.1 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
82 entries across 82 versions & 1 rubygems