getCategories.php 314 B

123456789101112131415
  1. <?php
  2. /**
  3. * @group taxonomy
  4. * @group category.php
  5. */
  6. class Tests_Category_GetCategories extends WP_UnitTestCase {
  7. /**
  8. * @ticket 36227
  9. */
  10. public function test_wp_error_should_return_an_empty_array() {
  11. $found = get_categories( array( 'taxonomy' => 'foo' ) );
  12. $this->assertSame( array(), $found );
  13. }
  14. }