Sha256: 4cbf8dc0ad4cb72651b20051620066359aa641cccea2dbb44a588de843c13898
Contents?: true
Size: 1.65 KB
Versions: 28
Compression:
Stored size: 1.65 KB
Contents
// This file was auto-generated based on version 1.1.0 of the canonical data. using Xunit; public class ScrabbleScoreTest { [Fact] public void Lowercase_letter() { Assert.Equal(1, ScrabbleScore.Score("a")); } [Fact(Skip = "Remove to run test")] public void Uppercase_letter() { Assert.Equal(1, ScrabbleScore.Score("A")); } [Fact(Skip = "Remove to run test")] public void Valuable_letter() { Assert.Equal(4, ScrabbleScore.Score("f")); } [Fact(Skip = "Remove to run test")] public void Short_word() { Assert.Equal(2, ScrabbleScore.Score("at")); } [Fact(Skip = "Remove to run test")] public void Short_valuable_word() { Assert.Equal(12, ScrabbleScore.Score("zoo")); } [Fact(Skip = "Remove to run test")] public void Medium_word() { Assert.Equal(6, ScrabbleScore.Score("street")); } [Fact(Skip = "Remove to run test")] public void Medium_valuable_word() { Assert.Equal(22, ScrabbleScore.Score("quirky")); } [Fact(Skip = "Remove to run test")] public void Long_mixed_case_word() { Assert.Equal(41, ScrabbleScore.Score("OxyphenButazone")); } [Fact(Skip = "Remove to run test")] public void English_like_word() { Assert.Equal(8, ScrabbleScore.Score("pinata")); } [Fact(Skip = "Remove to run test")] public void Empty_input() { Assert.Equal(0, ScrabbleScore.Score("")); } [Fact(Skip = "Remove to run test")] public void Entire_alphabet_available() { Assert.Equal(87, ScrabbleScore.Score("abcdefghijklmnopqrstuvwxyz")); } }
Version data entries
28 entries across 28 versions & 1 rubygems