1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Testing in Java

Connected

Exercise

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.

Instructions

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