markTestAsPassed(); } /** @test */ public function it_will_not_accept_an_empty_appKey() { $this->expectException(InvalidClient::class); new Client(1, '', 'appSecret', 'new'); } /** @test */ public function it_will_not_accept_an_empty_appSecret() { $this->expectException(InvalidClient::class); new Client(1, 'appKey', '', 'new'); } /** @test */ public function it_will_not_accept_an_non_numeric_appId() { $this->expectException(InvalidClient::class); new Client('appId', 'appKey', '', 'new'); } }