Skip to content

Commit 617ce68

Browse files
Tariq HookTariq Hook
authored andcommitted
initial commit
0 parents  commit 617ce68

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.idea/*
2+
*.iml
3+
*/target/*
4+
*/target/**
5+
.classpath
6+
.project
7+
.settings/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#Wu-Tang Financial###Currency Exchange## Objectives1. Demonstrate your understanding of Test Driven Development2. Demonstrate your understanding of Single Responsibility##OverviewAfter writing an amazing piece of software, Tariq was dubbed the Official METHOD-Man, and is now going on a international tour with his fellow Wu Brothers, coding and dropping Fresh BARS!!!! CHEYAH! BONG!!!!Now that he is an INTERNATIONAL rock star making crazy loot, he must make sure that he is being paid his rate. So, he needs you young coders to create him a Currency Exchange application, that will make sure he is not losing money in all his transactions. He would do it himself, but he is currently working with the RZA on the Man with Iron Fist 3 movie playing a character called "Man with the IRON Clad CODE" coming to theaters in 2018.## Exchange Rates| Currency | Rate ||----------|------|| Us Dollar| 1.00 || Euro | 0.94 ||British Pound| 0.82||Indian Rupee | 68.32|| Australian Dollar | 1.35||Canadian Dollar | 1.32|| Singapore Dollar | 1.43|| Swiss Franc | 1.01 || Malaysian Ringgit | 4.47 ||Japanese Yen | 115.84||Chinese Yuan Renminbi |6.92|## InstructionsCreate a program that can convert any currency into the requested type.There MUST be Unit test testing the following scenarios 1. Convert Dollar to Euro2. Convert Euro to Dollar3. Convert Euro to British Pound4. Convert British Pound to Indian Rupee5. Convert Rupee to Canadian Dollar6. Convert Canadian Dollar to Singapore Dollar7. Convert Singapore Dollar to Swiss Franc8. Convert Swiss Franc to Malaysian Ringgit9. Convert Malaysian Ringgit to Japanese Yen10. Convert Japanese Yen to Chinese Yuan Renminbi

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>io.zipcoder</groupId>
8+
<artifactId>wu-tang-financial</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<dependencies>
12+
13+
</dependencies>
14+
</project>

0 commit comments

Comments
 (0)