- Timestamp:
- 06/30/2017 04:35:39 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/factory/class-wp-unittest-factory-for-term.php
r36347 r40968 1 1 <?php 2 2 3 /** 4 * Unit test factory for terms. 5 * 6 * Note: The below @method notations are defined solely for the benefit of IDEs, 7 * as a way to indicate expected return values from the given factory methods. 8 * 9 * @method int create( $args = array(), $generation_definitions = null ) 10 * @method int[] create_many( $count, $args = array(), $generation_definitions = null ) 11 */ 3 12 class WP_UnitTest_Factory_For_Term extends WP_UnitTest_Factory_For_Thing { 4 13 … … 36 45 } 37 46 47 /** 48 * @return array|null|WP_Error|WP_Term 49 */ 38 50 function create_and_get( $args = array(), $generation_definitions = null ) { 39 51 $term_id = $this->create( $args, $generation_definitions );
Note: See TracChangeset
for help on using the changeset viewer.