//
        //You can use the following additional attributes as you write your tests:
        //
        //Use ClassInitialize to run code before running the first test in the class
        //[ClassInitialize()]
        //public static void MyClassInitialize(TestContext testContext)
        //{
        //}
        //
        //Use ClassCleanup to run code after all tests in a class have run
        //[ClassCleanup()]
        //public static void MyClassCleanup()
        //{
        //}
        //
        //Use TestInitialize to run code before running each test
        //[TestInitialize()]
        //public void MyTestInitialize()
        //{
        //}
        //
        //Use TestCleanup to run code after each test has run
        //[TestCleanup()]
        //public void MyTestCleanup()
        //{
        //}
        //

        #endregion

        public void NumberHelper <T>(T max, T min, string invokeMethod)
        {
            var content = new Dictionary <string, object> {
                { "Max", max.ToString() }, { "Min", min.ToString() }
            };
            var target = new JsonContainer(content);

            Type       t      = target.GetType();
            MethodInfo method = t.GetMethod(invokeMethod);

            var actual = (T)method.Invoke(target, new[] { "Max" });

            Assert.AreEqual(actual, max);

            actual = (T)method.Invoke(target, new[] { "Min" });
            Assert.AreEqual(actual, min);
        }