Created
October 21, 2008 23:52
-
-
Save jagregory/18489 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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