Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
More test fun
  • Loading branch information
gnarturo committed May 20, 2015
commit 24756f907079de94cef398426ca259d247dd57b0
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public void TestInterception()
ctx => ctx.DbContexts != null
&& ctx.DbContexts.Count(x => x is TrackerContext) == 1));

interceptor.Received().ScalarExecuting(
interceptor.DidNotReceive().ScalarExecuting(
Arg.Any<DbCommand>(),
Arg.Any<DbCommandInterceptionContext<object>>());

interceptor.Received().ScalarExecuted(
interceptor.DidNotReceive().ScalarExecuted(
Arg.Any<DbCommand>(),
Arg.Any<DbCommandInterceptionContext<object>>());

Expand Down