Changeset 56549 for trunk/tests/phpunit/tests/blocks/wpBlockList.php
- Timestamp:
- 09/09/2023 09:26:01 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/wpBlockList.php
r56547 r56549 72 72 foreach ( $blocks as $block ) { 73 73 $this->assertSame( 'core/example', $block->name ); 74 $assertions++;74 ++$assertions; 75 75 foreach ( $block->inner_blocks as $inner_block ) { 76 76 $this->assertSame( 'core/example', $inner_block->name ); 77 $assertions++;77 ++$assertions; 78 78 } 79 79 } … … 84 84 $block = $blocks->current(); 85 85 $this->assertSame( 0, $key ); 86 $assertions++;86 ++$assertions; 87 87 $this->assertSame( 'core/example', $block->name ); 88 $assertions++;88 ++$assertions; 89 89 $blocks->next(); 90 90 }
Note: See TracChangeset
for help on using the changeset viewer.