diff --git a/tests/Exceptions/InvalidConfigurationTest.php b/tests/Exceptions/InvalidConfigurationTest.php new file mode 100644 index 0000000..621b5c9 --- /dev/null +++ b/tests/Exceptions/InvalidConfigurationTest.php @@ -0,0 +1,21 @@ +assertInstanceOf(InvalidConfiguration::class, $exception); + $this->assertEquals( + "Unknown value 'foo' for configuration option 'bar'", + $exception->getMessage() + ); + } +}