You are here

public function LoggerChannelPartFactoryTest::providerTestCreate in Purge 8.3

Provides test data for testCreate().

File

tests/src/Unit/Logger/LoggerChannelPartFactoryTest.php, line 52

Class

LoggerChannelPartFactoryTest
@coversDefaultClass \Drupal\purge\Logger\LoggerChannelPartFactory

Namespace

Drupal\Tests\purge\Unit\Logger

Code

public function providerTestCreate() : array {
  return [
    [
      'foo',
      [
        0,
        1,
        2,
      ],
    ],
    [
      'bar',
      [
        1,
        2,
        3,
      ],
    ],
    [
      'baz',
      [
        2,
        3,
        4,
      ],
    ],
  ];
}