Currency conversion
You are working on a currency trading platform. There is a utility class that converts between currencies. Its public convert() method takes an amount
in the first currency and an exchange rate, and returns the value in another currency.
Your task is to make the project requirements for it part of the codebase by writing tests. A good place to start is to write a unit test for the success scenario for this method.
The necessary JUnit packages have been imported for you.
Este ejercicio forma parte del curso
Introduction to Testing in Java
Instrucciones del ejercicio
- Call the
convert()method with the currency and exchange rate. - Use the correct JUnit assertion to check that the
convertedCurrencyamount is equal to the expected one.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
public class CurrencyConverterWithTests {
public static void main(String[] args) {
launchTestsAndPrint(CurrencyConverterTest.class);
}
}
class CurrencyConverter {
public static double convert(double currency, double exchangeRate) {
return currency * exchangeRate;
}
}
class CurrencyConverterTest {
@Test
void convert_returnsConvertedCurrency_whenValidInputs() {
double currency = 100;
double exchangeRate = 1.2;
// Call the convert method with the currency and exchange rate
double convertedCurrency = CurrencyConverter.____(currency, ____);
// Use the correct JUnit assertion, the expected value, and the converted currency amount
____(120, ____);
}
}