public function HttpClientTest::testCallWithWrongCommandName in HTTP Client Manager 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/HttpClientTest.php \Drupal\Tests\http_client_manager\Unit\HttpClientTest::testCallWithWrongCommandName()
Tests HttpClient::call() with wrong command name.
@covers ::call
@expectedException \Guzzle\Common\Exception\InvalidArgumentException @expectedExceptionMessage Command was not found matching Missing
File
- tests/
src/ Unit/ HttpClientTest.php, line 117
Class
- HttpClientTest
- Class HttpClientTest.
Namespace
Drupal\Tests\http_client_manager\UnitCode
public function testCallWithWrongCommandName() {
$this->client
->call('Missing');
}