public static void Y2015_Day05_IsNiceV1(string value, bool expected) { // Act bool actual = Day05.IsNiceV1(value); // Assert actual.ShouldBe(expected); }