protected function IndividualCRUDTest::setUp in CRM Core 8.3
Same name and namespace in other branches
- 8 modules/crm_core_contact/tests/src/Kernel/IndividualCRUDTest.php \Drupal\Tests\crm_core_contact\Kernel\IndividualCRUDTest::setUp()
- 8.2 modules/crm_core_contact/tests/src/Kernel/IndividualCRUDTest.php \Drupal\Tests\crm_core_contact\Kernel\IndividualCRUDTest::setUp()
Overrides KernelTestBase::setUp
File
- modules/
crm_core_contact/ tests/ src/ Kernel/ IndividualCRUDTest.php, line 45
Class
- IndividualCRUDTest
- Tests CRUD operations for the CRM Core Individual entity.
Namespace
Drupal\Tests\crm_core_contact\KernelCode
protected function setUp() {
parent::setUp();
$this
->installConfig([
'field',
]);
$this
->installEntitySchema('crm_core_individual');
$this
->installEntitySchema('crm_core_organization');
$this
->installEntitySchema('crm_core_activity');
$this
->installEntitySchema('relation');
$this->pluginManager = $this->container
->get('plugin.manager.action');
}