Beispiel #1
0
        public void WhenTypeIsJsonValueThenCanReadIsTrue()
        {
            var formatter = new JsonValueMediaTypeFormatter();

            Assert.IsTrue(formatter.CanReadType(typeof(JsonValue)));
        }
Beispiel #2
0
        public void WhenTypeIsNotJsonValueThenCanReadIsFalse()
        {
            var formatter = new JsonValueMediaTypeFormatter();

            Assert.IsFalse(formatter.CanReadType(typeof(int)));
        }