Changeset 51172
- Timestamp:
- 06/16/2021 05:30:07 PM (3 years ago)
- Location:
- trunk/tests/phpunit/tests/media
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/media/getAdjacentImageLink.php
r51122 r51172 4 4 5 5 /** 6 * @group 6 * @group media 7 7 * @covers ::get_adjacent_image_link 8 8 */ -
trunk/tests/phpunit/tests/media/getNextImageLink.php
r51122 r51172 4 4 5 5 /** 6 * @group 6 * @group media 7 7 * @covers ::get_next_image_link 8 8 */ … … 18 18 * @dataProvider data_get_next_image_link 19 19 */ 20 function test_get_next_image_link( $current_attachment_index, $expected_attachment_index = 0, $expected, array $args = array() ) {20 function test_get_next_image_link( $current_attachment_index, $expected_attachment_index, $expected, array $args = array() ) { 21 21 list( $expected, $args ) = $this->setup_test_scenario( $current_attachment_index, $expected_attachment_index, $expected, $args ); 22 22 -
trunk/tests/phpunit/tests/media/getPreviousImageLink.php
r51122 r51172 4 4 5 5 /** 6 * @group 6 * @group media 7 7 * @covers ::get_previous_image_link 8 8 */ … … 18 18 * @dataProvider data_get_previous_image_link 19 19 */ 20 function test_get_previous_image_link( $current_attachment_index, $expected_attachment_index = 0, $expected, array $args = array() ) {20 function test_get_previous_image_link( $current_attachment_index, $expected_attachment_index, $expected, array $args = array() ) { 21 21 list( $expected, $args ) = $this->setup_test_scenario( $current_attachment_index, $expected_attachment_index, $expected, $args ); 22 22 -
trunk/tests/phpunit/tests/media/nextImageLink.php
r51122 r51172 4 4 5 5 /** 6 * @group 6 * @group media 7 7 * @covers ::next_image_link 8 8 */ … … 18 18 * @dataProvider data_next_image_link 19 19 */ 20 function test_next_image_link( $current_attachment_index, $expected_attachment_index = 0, $expected, array $args = array() ) {20 function test_next_image_link( $current_attachment_index, $expected_attachment_index, $expected, array $args = array() ) { 21 21 list( $expected, $args ) = $this->setup_test_scenario( $current_attachment_index, $expected_attachment_index, $expected, $args ); 22 22 -
trunk/tests/phpunit/tests/media/previousImageLink.php
r51122 r51172 4 4 5 5 /** 6 * @group 6 * @group media 7 7 * @covers ::previous_image_link 8 8 */ … … 18 18 * @dataProvider data_previous_image_link 19 19 */ 20 function test_previous_image_link( $current_attachment_index, $expected_attachment_index = 0, $expected, array $args = array() ) {20 function test_previous_image_link( $current_attachment_index, $expected_attachment_index, $expected, array $args = array() ) { 21 21 list( $expected, $args ) = $this->setup_test_scenario( $current_attachment_index, $expected_attachment_index, $expected, $args ); 22 22
Note: See TracChangeset
for help on using the changeset viewer.