assertSame('Invalid response from payment gateway', $exception->getMessage()); } public function testConstructWithCustomMessage() { $exception = new InvalidResponseException('Oops'); $this->assertSame('Oops', $exception->getMessage()); } }