public void SimpleIndexIncrement()
        {
            var scope = new ProcessingScope();

            scope.Set(new Level1());
            Assert.AreEqual(1, scope.Index <Level1>());
            scope.Set(new Level1());
            Assert.AreEqual(2, scope.Index <Level1>());
        }
        public void SimpleIndexIncrement()
        {
            var scope = new ProcessingScope();

            scope.Set(new Level1());
            Assert.AreEqual(1, scope.Index<Level1>());
            scope.Set(new Level1());
            Assert.AreEqual(2, scope.Index<Level1>());
        }