Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class MyFixture
  2. {
  3. private readonly ICloseLogFileCommand _closeCommand = Mock.Of<ICloseLogFileCommand>();
  4.  
  5. private readonly ILog _log = Mocks.Of<ILog>().
  6. First(x => x.Name == @"C:\Path\To\File.log" &&
  7. x.Count == 42 &&
  8. x.Offset == TimeSpan.FromSeconds(69));
  9. ...
  10. }
Add Comment
Please, Sign In to add comment