public void Eval_UnitTest()
        {
            var instance = new JsonBackedList <string>(Func);

            Assert.IsNotNull(instance);
            const string expectedValue = "TokenValue";
            var          property      = new JProperty("TokenKey", expectedValue);
            var          json          = new JObject {
                property
            };
            IReadOnlyList <string> result = instance.Eval(json);

            Assert.IsNotNull(result);
        }
        public void JsonBackedList_Constructor_UnitTest()
        {
            var instance = new JsonBackedList <string>(Func);

            Assert.IsNotNull(instance);
        }