You are here

public function SamlTest::setUp in SAML Authentication 8.3

Same name and namespace in other branches
  1. 8 src/Tests/SamlTest.php \Drupal\samlauth\Tests\SamlTest::setUp()
  2. 8.2 src/Tests/SamlTest.php \Drupal\samlauth\Tests\SamlTest::setUp()
  3. 4.x src/Tests/SamlTest.php \Drupal\samlauth\Tests\SamlTest::setUp()

Overrides BrowserTestBase::setUp

File

src/Tests/SamlTest.php, line 51

Class

SamlTest
Semi random tests for the samlauth module.

Namespace

Drupal\samlauth\Tests

Code

public function setUp() {
  parent::setUp();

  // Import testshib config.
  $config = drupal_get_path('module', 'samlauth') . '/test_resources/samlauth.authentication.yml';
  $config = file_get_contents($config);
  $config = Yaml::decode($config);
  \Drupal::configFactory()
    ->getEditable('samlauth.authentication')
    ->setData($config)
    ->save();
}