roman_numerals_buggy

Download and study the code provided in the BlueJ projectroman_numerals_buggy.zip. Rename this BlueJ project toroman_numeral_soln(this is the BlueJ project you will be submitting). You can rename the project by renaming the folder fromroman_numerals_buggytoroman_numeral_solnafter extracting the zip file. The purpose of this code is to convert Arabic numerals into Roman numerals. Make an instance ofRomanNumeralsand invoke the methodtoRoman(int n). Enter a number in the Arabic notation and it will convert it to a Roman numeral. For example “17” will be converted to “XVII”.You will notice a test suite that we provide with the code. Run the test suite by right-clicking onRomanNumeralsTestand choosingTest Allas shown in Figure 6.3 of the book. Alternatively, you can click on theRun Testsbutton as shown in Figure 6.2 of the book, if you have enabled the ‘Show unit testing tools’ preference. To enable it, go to Tools > Preferences > Miscellaneous, and select ‘Show unit testing tools’.

You will notice a total of eight tests of which two fail.

  1. Your first task in this assignment is to study the given code, identify why the two tests fail, and correct the code.
  2. On studying the code further, you will notice a few more bugs/limitations in the provided code (i.e. the provided code will not give the correct Roman numeral conversion for some numbers). Identify them and correct the code to handle those situations also.
  3. Also, the test suite itself has a bug, i.e. it will flag an error in a particular case even when the code gives the right answer. Identify that situation and correct it.
  4. Add five more tests toRomanNumeralsTestto give you confidence that all numbers between 1 and 3,000 will be converted correctly.

By the end of this assignment you will have code that converts from Arabic numerals to Roman numerals which handles all possibilities and is fully tested by an additional five tests (hence, a total of 13 tests: eight we provide and five you write).

Create a new project in BlueJ by clicking on the menu optionProject > New project.This will create a folder with the project name (see below). All BlueJ project-related files for this project will be stored in this folder.Create new classes by clicking on the[New Class]button.All Java class files that you create (.java files) will be stored in the BlueJ project folder.The project folder will contain other files as well. After completing and testing your assignment, zip theentireBlueJ folder and submit it.Since your Instructor will need all files in the project folder, make sure you zip the entire folder. For this assignment the names of the BlueJ project, Java class files, and the zip file you submit are given below:

  1. BlueJ project: roman_numeral_soln (note that you would have downloaded roman_numberal_buggy.zip, unzipped and renamed the project to roman_numberal_soln.)
  2. Java classes: RomanNumerals.java, RomanNumeralsTest.java
  3. Submit: roman_numeral_soln.zip