LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Introduction to Testing in Java

Kurs anzeigen

Anleitung zur Übung

  • Call the convert() method with the currency and exchange rate.
  • Use the correct JUnit assertion to check that the convertedCurrency amount is equal to the expected one.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

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, ____); 
    }
}
Code bearbeiten und ausführen