You are here

public function AcquiadamClientFactoryTest::testFactoryGetBackground in Media: Acquia DAM 8

Check to make sure that the 'background' option gives us a client.

File

tests/src/Unit/AcquiadamClientFactoryTest.php, line 40

Class

AcquiadamClientFactoryTest
Client factory test.

Namespace

Drupal\Tests\media_acquiadam\Unit

Code

public function testFactoryGetBackground() {
  $client = $this->clientFactory
    ->get('background');
  $this
    ->assertInstanceOf(Client::class, $client);
}