Skip to content

Instantly share code, notes, and snippets.

@GraemeF
Created February 10, 2011 15:16
Show Gist options
  • Save GraemeF/820677 to your computer and use it in GitHub Desktop.
Save GraemeF/820677 to your computer and use it in GitHub Desktop.
Setup with Moq
public class MyFixture
{
private readonly ICloseLogFileCommand _closeCommand = Mock.Of<ICloseLogFileCommand>();
private readonly ILog _log = Mocks.Of<ILog>().
First(x => x.Name == @"C:\Path\To\File.log" &&
x.Count == 42 &&
x.Offset == TimeSpan.FromSeconds(69));
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment