Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created October 21, 2008 23:49
Show Gist options
  • Save jagregory/18482 to your computer and use it in GitHub Desktop.
Save jagregory/18482 to your computer and use it in GitHub Desktop.
[Test]
public void ParsesFullFileLine()
{
var result = Parse<FileStats>("3\t8\tmyFile.txt\r\n", x => x.FileStats);
Assert.That(result.Additions, Is.EqualTo(3));
Assert.That(result.Subtractions, Is.EqualTo(8));
Assert.That(result.Filename, Is.EqualTo("myFile.txt"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment