private void Record(string name, object[] args) { _recorder.Record(new MethodCall(_label + "." + name, args)); }
public void TestStarted(ITest test) { recorder.Record(new MethodCall("testStarted", new object[] { test })); }
public virtual void Rollback(IObjectContainer container, object obj) { _recorder.Record(new MethodCall("rollback", new[] { container, obj })); }
private void Record(string methodName, params object[] args) { _recorder.Record(new MethodCall(methodName, args)); }