public void ProfilingBehaviorInvokeInputNullTest() { var target = new ProfilingBehavior(_logger, _profiler); target.Invoke(null, new GetNextInterceptionBehaviorDelegate(() => null)); }
public void ProfilingBehaviorConstructorProfilerNullTest() { var target = new ProfilingBehavior(_logger, null); }
public void ProfilingBehaviorConstructorTest() { var target = new ProfilingBehavior(_logger, _profiler); Assert.IsNotNull(target); }
public void ProfilingBehaviorConstructorLoggerNullTest() { var target = new ProfilingBehavior(null, _profiler); }
public void ProfilingBehaviorInvokeDelegateNullTest() { var target = new ProfilingBehavior(_logger, _profiler); target.Invoke(new Mock <IMethodInvocation>().Object, null); }