public void EscapeTest(string input, string expected) { var encode = Base64Url.Escape(input); encode.Should().Be(expected); }