-
Notifications
You must be signed in to change notification settings - Fork 1
RomanNumeral.Spec.Boundaries
As a library user
I want to be able to invoke methods taking the arabic number a argument
So that I can verify whether an arabic numeral can be converted into a roman numeral
Given the arabic numeral -1
When the numeral is asserted
Then a range exception is thrown
Tags: RomanNumeral, Boundaries
Given the arabic numeral 20
When the numeral is asserted
Then no exception is raised
Tags: RomanNumeral, Boundaries
Given the arabic numeral 4001
When the numeral is asserted
Then a range exception is thrown
Tags: RomanNumeral, Boundaries
Given the arabic numeral -1
When the numeral is checked
Then the result is False
Tags: RomanNumeral, Boundaries
Given the arabic numeral 20
When the numeral is checked
Then the result is True
Tags: RomanNumeral, Boundaries
Given the arabic numeral 4001
When the numeral is checked
Then the result is False
Tags: RomanNumeral, Boundaries