Skip to content

Instantly share code, notes, and snippets.

@capablaza
Last active September 7, 2021 18:58
Show Gist options
  • Save capablaza/11e00510284497cae3a655f98c49ad4a to your computer and use it in GitHub Desktop.
Save capablaza/11e00510284497cae3a655f98c49ad4a to your computer and use it in GitHub Desktop.
//function target
public conversorMoney(String from, String to, value);
@Test
public conversorMoneyTest(){
String originCurrency = "USD";
String destinationCurrency = "CLP";
int value = 1000;
// 1 USD is equal to 650 clp
int result = conversorMoney(originCurrency, destinationCurrency, value);
assertEquals(result, 6500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment