Changeset 53683 for trunk/tests/phpunit/tests/basic.php
- Timestamp:
- 07/07/2022 10:53:34 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/basic.php
r53357 r53683 4 4 * just make sure the test framework is working 5 5 * 6 * No Covers as this checks for content in files 7 * 6 8 * @group testsuite 7 9 */ 8 10 class Tests_Basic extends WP_UnitTestCase { 9 11 12 /** 13 * @coversNothing 14 */ 10 15 public function test_license() { 11 16 // This test is designed to only run on trunk. … … 20 25 } 21 26 27 /** 28 * @coversNothing 29 */ 22 30 public function test_security_md() { 23 31 // This test is designed to only run on trunk. … … 33 41 } 34 42 43 /** 44 * @coversNothing 45 */ 35 46 public function test_package_json() { 36 47 $package_json = file_get_contents( dirname( ABSPATH ) . '/package.json' ); … … 50 61 /** 51 62 * @depends test_package_json 63 * 64 * @coversNothing 52 65 */ 53 66 public function test_package_json_node_engine( $package_json ) { … … 56 69 } 57 70 58 // Test some helper utility functions. 59 71 /** 72 * Test some helper utility functions. 73 * 74 * @coversNothing 75 */ 60 76 public function test_strip_ws() { 61 77 $this->assertSame( '', strip_ws( '' ) ); … … 85 101 } 86 102 103 /** 104 * @coversNothing 105 */ 87 106 public function test_mask_input_value() { 88 107 $in = <<<EOF
Note: See TracChangeset
for help on using the changeset viewer.