Ejemplo n.º 1
0
 public void GetBody_InvalidParams_ThrowArgumentException(string key)
 {
     FluentActions.Invoking(() => Pkcs8Utils.GetBody(key)).Should().Throw <ArgumentException>();
 }
Ejemplo n.º 2
0
        public void GetBody_ReturnBodyWithoutBreakLines(string key, string expected)
        {
            var result = Pkcs8Utils.GetBody(key);

            result.Should().Be(expected);
        }