protected function TestFrameworkKernelTest::setUp in Apigee Edge 8
Throws
\Exception
Overrides KernelTestBase::setUp
File
- tests/
src/ Kernel/ TestFrameworkKernelTest.php, line 74
Class
- TestFrameworkKernelTest
- Tests the testing framework for testing offline.
Namespace
Drupal\Tests\apigee_edge\KernelCode
protected function setUp() {
parent::setUp();
$this
->installConfig([
'apigee_edge',
]);
// Prepare to create a user.
$this
->installEntitySchema('user');
$this
->installSchema('system', [
'sequences',
]);
$this
->installSchema('user', [
'users_data',
]);
$this
->apigeeTestHelperSetup();
}