public void Constructor_should_set_call()
        {
            var call = A.Fake<IInterceptedFakeObjectCall>();

            var args = new CallInterceptedEventArgs(call);

            Assert.That(args.Call, Is.SameAs(call));
        }
 private void Proxy_CallWasIntercepted(object sender, CallInterceptedEventArgs e)
 {
     this.Intercept(e.Call);
 }
Beispiel #3
0
 private void Proxy_CallWasIntercepted(object sender, CallInterceptedEventArgs e)
 {
     this.Intercept(e.Call);
 }