'Vertical Tabs Example', 'description' => 'Functional tests for the Vertical Tabs Example module.' , 'group' => 'Examples', ); } /** * {@inheritdoc} */ public function setUp() { parent::setUp('vertical_tabs_example'); } /** * Tests the menu paths defined in vertical_tabs_example module. */ public function testVerticalTabsExampleMenus() { $paths = array( 'examples/vertical_tabs', ); foreach ($paths as $path) { $this->drupalGet($path); $this->assertResponse(200, '200 response for path: ' . $path); } } }