public static void WhitespacesParserIncorrect() => AssertThat(() => Whitespaces.Parse(string.Empty)).ThrowsExactlyException <ParseException>();
public static void WhitespacesCorrect(string input) => AssertThat(Whitespaces.Parse(input)).IsEqualTo(input);