コード例 #1
0
 public VerifiedMockStateTests()
 {
     verify = new VerifiedMockState(null);
 }
コード例 #2
0
 public void ThrowsOnVerifyState()
 {
     verify = verify.VerifyState;
 }
コード例 #3
0
 /// <summary>
 /// Create a new instance of VerifiedMockState
 /// </summary>
 /// <param name="previous">The previous mock state, used to get the initial record state</param>
 public VerifiedMockState(IMockState previous)
 {
     this.previous = previous;
 }
コード例 #4
0
 public void Setup()
 {
     verify = new VerifiedMockState(null);
 }
コード例 #5
0
 public VerifiedMockStateTests()
 {
     verify = new VerifiedMockState(null);
 }