'Installation profile module tests helper', 'description' => 'Verifies that tests in installation profile modules are found and may use another profile for running tests.', 'group' => 'Installation profile', ); } function setUp() { // Attempt to install a module in Testing profile, while this test runs with // a different profile. parent::setUp(array('drupal_system_listing_compatible_test')); } /** * Non-empty test* method required to executed the test case class. */ function testDrupalSystemListing() { $this->pass(__CLASS__ . ' test executed.'); } }