Esempio n. 1
0
        public void RoundCount_IsValid(string input, string expected)
        {
            // Arrange
            var parser = new RoundCountParser();

            // Act
            var actual = parser.Parse(input);

            // Assert
            Assert.Equal(expected, actual);
        }
Esempio n. 2
0
 public static string GetRoundCount(this string description)
 {
     return(RoundCount.Parse(description));
 }