PanelsUserViewWebTestCase.test 523 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @file
  4. * Some rudimentary tests for the user_view handler.
  5. */
  6. class PanelsUserViewWebTestCase extends PanelsEntityViewWebTestCase {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public static function getInfo() {
  11. return array(
  12. 'name' => 'Panels user_view tests',
  13. 'description' => 'Test the standard user_view task handler.',
  14. 'group' => 'Panels',
  15. );
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. protected $view_name = 'user_view';
  21. /**
  22. * {@inheritdoc}
  23. */
  24. protected $view_label = 'Users';
  25. }