-
Notifications
You must be signed in to change notification settings - Fork 0
/
STRUCTURE-README.txt
36 lines (29 loc) · 1.32 KB
/
STRUCTURE-README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Structure of files in this directory:
Coding-Kata-RomanNumerals------------ Main directory
|
|____bin (contains two subfolders)<br/>
| |
| |____MainRomanNumeralConversionProgram (contains 4 files)<br/>
| |
| |____TestsForRomanNumeralConversion (contains 4 files)<br/>
|
|
|
|____src (contains two subfolders and one README.txt)
|
|____MainRomanNumeralConversionProgram (contains 4 files)
|
|____TestsForRomanNumeralConversion (contains 4 files)
|
|____README.txt (More details and further explanation)
## bin/MainRomanNumeralConversionProgram
is the sub folder containing program executables for ArabicToRomanNumeralGenerator
## bin/TestsForRomanNumeralConversion
is the sub folder containing program executables to test the execution of the solution
## src/MainRomanNumeralConversionProgram
is the sub folder containing all the java files for ArabicToRomanNumeralGenerator
## src/TestsForRomanNumeralConversion
is the sub folder containing all the java files to test the execution of the solution
## Note:
Compile and run the Program.java and other associated .java files in src/MainRomanNumeralConversionProgram to see the solution in action.
Compile and run the Program.java and other associated .java files in src/TestsForRomanNumeralConversion to perform tests to check quality of the solution.