Ejemplo n.º 1
0
        public void CreateRepetition()
        {
            var arabicFive = new ArabicNumber(5);
            var result     = RomanSymbolRepetition.CanCreateRepetition(RomanSymbols.V, arabicFive);

            Assert.True(result);
        }
Ejemplo n.º 2
0
        public void NotCreateEmptyRepetition()
        {
            var arabicThree = new ArabicNumber(3);
            var result      = RomanSymbolRepetition.CanCreateRepetition(RomanSymbols.V, arabicThree);

            Assert.False(result);
        }