Changeset 51462 for trunk/tests/phpunit/tests/post/getTheContent.php
- Timestamp:
- 07/19/2021 02:00:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/getTheContent.php
r48114 r51462 20 20 } 21 21 22 $this->assert Contains( '>Ping<', $found );22 $this->assertStringContainsString( '>Ping<', $found ); 23 23 } 24 24 … … 39 39 } 40 40 41 $this->assert NotContains( 'Foo', $found );41 $this->assertStringNotContainsString( 'Foo', $found ); 42 42 } 43 43
Note: See TracChangeset
for help on using the changeset viewer.