1. सीखें
  2. /
  3. पाठ्यक्रम
  4. /
  5. Introduction to Testing in Java

Connected

अभ्यास

Foreign Exchange: Error scenario

The documentation for the EuropeanCentralBankServer library says that attempting to convert to currencies the bank doesn't offer will result in this exception:

new RuntimeException("Currency not in ECB list: " + currencyName)

Write an integration test that verifies this error scenario.

निर्देश

100 XP
  • Fill in the correct assertion to verify the exception is an instance of RuntimeException.
  • Use the correct assertion to check equality.