Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created October 21, 2008 23:52
Show Gist options
  • Save jagregory/18489 to your computer and use it in GitHub Desktop.
Save jagregory/18489 to your computer and use it in GitHub Desktop.
[Test]
public void CanParseMultipleLines()
{
var result = ParseList<FileStats>(
"3\t8\tfile.txt\r\n" +
"5\t1\tanotherFile.txt\r\n", x => x.FullFile);
Assert.That(result.Count, Is.EqualTo(2));
Assert.That(result[0].Filename, Is.EqualTo("file.txt"));
Assert.That(result[0].Additions, Is.EqualTo(3));
Assert.That(result[0].Subtractions, Is.EqualTo(8));
Assert.That(result[1].Filename, Is.EqualTo("anotherFile.txt"));
Assert.That(result[1].Additions, Is.EqualTo(5));
Assert.That(result[1].Subtractions, Is.EqualTo(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment