function AlignFilterTest::setUp in Entity Embed 7
Same name and namespace in other branches
- 7.2 entity_embed.test \AlignFilterTest::setUp()
Sets up unit test environment.
Unlike DrupalWebTestCase::setUp(), DrupalUnitTestCase::setUp() does not install modules because tests are performed without accessing the database. Any required files must be explicitly included by the child class setUp() method.
Overrides DrupalUnitTestCase::setUp
File
- ./
entity_embed.test, line 344 - Test integration for the entity_embed module.
Class
- AlignFilterTest
- Tests the align filter.
Code
function setUp() {
drupal_load('module', 'entity_embed');
parent::setUp();
}