* @copyright Meritoo.pl */ class EmptyFilePathExceptionTest extends BaseTestCase { public function testConstructorVisibilityAndArguments() { static::assertConstructorVisibilityAndArguments(EmptyFilePathException::class, OopVisibilityType::IS_PUBLIC); } public function testConstructorMessage() { $exception = new EmptyFilePathException(); static::assertEquals('Path of the file is empty. Did you provide path of proper file?', $exception->getMessage()); } }