You are here

public function FlysystemServiceProviderTest::testNothingFailsIfContainerIsEmpty in Flysystem 8

Same name and namespace in other branches
  1. 3.x tests/src/Unit/FlysystemServiceProviderTest.php \Drupal\Tests\flysystem\Unit\FlysystemServiceProviderTest::testNothingFailsIfContainerIsEmpty()
  2. 2.0.x tests/src/Unit/FlysystemServiceProviderTest.php \Drupal\Tests\flysystem\Unit\FlysystemServiceProviderTest::testNothingFailsIfContainerIsEmpty()
  3. 3.0.x tests/src/Unit/FlysystemServiceProviderTest.php \Drupal\Tests\flysystem\Unit\FlysystemServiceProviderTest::testNothingFailsIfContainerIsEmpty()

@covers ::register

File

tests/src/Unit/FlysystemServiceProviderTest.php, line 41

Class

FlysystemServiceProviderTest
@coversDefaultClass \Drupal\flysystem\FlysystemServiceProvider @group flysystem

Namespace

Drupal\Tests\flysystem\Unit

Code

public function testNothingFailsIfContainerIsEmpty() {
  new Settings([]);
  (new FlysystemServiceProvider())
    ->register($this->container);
}