You are here

public function GingerbreadTest::provideTestData in Bakery Single Sign-On System 8.2

Overrides CookieTestTrait::provideTestData

File

tests/src/Unit/Cookies/GingerbreadTest.php, line 23

Class

GingerbreadTest
@coversDefaultClass \Drupal\bakery\Cookies\Gingerbread

Namespace

Drupal\Tests\bakery\Unit\Cookies

Code

public function provideTestData() {
  return [
    'basic' => [
      [
        'name' => 'testuser1',
        'or_email' => 1,
        'slave' => 'child.example.com',
        'uid' => 123,
      ],
    ],
    [
      [
        'name' => 'testuser1',
        'or_email' => 0,
        'slave' => 'child.example.com',
        'uid' => 123,
      ],
    ],
  ];
}