Skip to content

Commit

Permalink
Added final year test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisAnn committed Mar 11, 2012
1 parent e25835b commit 6747645
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/RomanNumeralsKata.Unit.Tests/RomanNumeralTests.cs
Expand Up @@ -109,6 +109,15 @@ public void Should_parse_94_to_XCIV ()
var output = new RomanNumeral ().Parse (94);

Assert.That (output, Is.EqualTo ("XCIV"));
} }
}

[Test]
public void Should_parse_1990_to_MCMXC ()
{
var output = new RomanNumeral ().Parse (1990);

Assert.That (output, Is.EqualTo ("MCMXC"));
}
}
}

0 comments on commit 6747645

Please sign in to comment.