public ActionMethodGrammar(MethodInfo method, object fixture)
        {
            _method = method;

            _invocation = MethodInvocation.For(method, fixture);
        }
 public FactCheckMethod(MethodInfo method, object target)
 {
     _invocation = MethodInvocation.For(method, target);
 }
 public FactMethod(MethodInfo method, object target)
 {
     _method     = method;
     _invocation = MethodInvocation.For(method, target);
 }