- Timestamp:
- 12/16/2016 05:49:02 AM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/tests/phpunit/tests/term/wpGetObjectTerms.php
r38667 r39611 691 691 return $terms; 692 692 } 693 694 public function test_verify_args_parameter_can_be_string() { 695 $p = self::factory()->post->create(); 696 697 $t1 = self::factory()->term->create( array( 698 'taxonomy' => $this->taxonomy, 699 'name' => 'AAA', 700 ) ); 701 $t2 = self::factory()->term->create( array( 702 'taxonomy' => $this->taxonomy, 703 'name' => 'ZZZ', 704 ) ); 705 $t3 = self::factory()->term->create( array( 706 'taxonomy' => $this->taxonomy, 707 'name' => 'JJJ', 708 ) ); 709 710 wp_set_object_terms( $p, array( $t1, $t2, $t3 ), $this->taxonomy ); 711 712 $found = wp_get_object_terms( $p, $this->taxonomy, 'orderby=name&fields=ids' ); 713 714 $this->assertEquals( array( $t1, $t3, $t2 ), $found ); 715 } 693 716 }
Note: See TracChangeset
for help on using the changeset viewer.