You are here

public function ConfigTest::simpleDataProvider in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::simpleDataProvider()

Provides simple test data.

See also

\Drupal\Tests\Core\Config\ConfigTest::testClear()

File

core/tests/Drupal/Tests/Core/Config/ConfigTest.php, line 465
Contains \Drupal\Tests\Core\Config\ConfigTest.

Class

ConfigTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public function simpleDataProvider() {
  return array(
    array(
      array(
        'a' => '1',
        'b' => '2',
        'c' => '3',
      ),
    ),
  );
}