Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.22 KB

File metadata and controls

27 lines (19 loc) · 1.22 KB

Design a Roman Numerals Converter Console Application

Key Features of application:

Created in a Maven Project. Run tests using command line "MVN TEST".

User Story
As a user I would like to use the Roman Numerals Converter Console Application So that I can convert my roman numerals into numbers

User Acceptance Criteria

Case 1:
GIVEN The user starts the console application and is prompted with the message Please enter a Roman Numeral WHEN The user enters the roman numeral I THEN The application will print the conversion to the console, in this case, You converted the Roman Numeral I to the number 1

Case 2:
GIVEN The user starts the console application and is prompted with the message Please enter a Roman Numeral WHEN The user enters the roman numeral II THEN The application will print the conversion to the console, in this case, You converted the Roman Numeral II to the number 2

Full case:
We would like you to convert the Roman Numerals for numbers 1 to 10. You are more than welcome to convert more Roman Numerals if you wish but this is not a core requirement.

Unit Testing

Add unit tests using the JUnit 5 unit testing framework.