public void InvocationShouldBeRanWithinAnUnitOfWork()
        {
            var method     = GetType().GetMethod("Test");
            var invocation = new MethodInvocationInfo(Test, method);
            var result     = behavior.ApplyTo(invocation);

            Assert.AreEqual("test", result);
        }