* @copyright Meritoo * * @internal * @covers \Meritoo\Common\Exception\File\EmptyFilePathException */ class EmptyFilePathExceptionTest extends BaseTestCase { public function testConstructorMessage() { $exception = EmptyFilePathException::create(); static::assertSame('Path of the file is empty. Did you provide path of proper file?', $exception->getMessage()); } public function testConstructorVisibilityAndArguments() { static::assertConstructorVisibilityAndArguments(EmptyFilePathException::class, OopVisibilityType::IS_PUBLIC, 3); } }