Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-tests-config-sample.php

    r46586 r47122  
    1616define( 'WP_DEFAULT_THEME', 'default' );
    1717
    18 // Test with multisite enabled.
    19 // Alternatively, use the tests/phpunit/multisite.xml configuration file.
     18/*
     19 * Test with multisite enabled.
     20 * Alternatively, use the tests/phpunit/multisite.xml configuration file.
     21 */
    2022// define( 'WP_TESTS_MULTISITE', true );
    2123
    22 // Force known bugs to be run.
    23 // Tests with an associated Trac ticket that is still open are normally skipped.
     24/*
     25 * Force known bugs to be run.
     26 * Tests with an associated Trac ticket that is still open are normally skipped.
     27 */
    2428// define( 'WP_TESTS_FORCE_KNOWN_BUGS', true );
    2529
     
    2933// ** MySQL settings ** //
    3034
    31 // This configuration file will be used by the copy of WordPress being tested.
    32 // wordpress/wp-config.php will be ignored.
    33 
    34 // WARNING WARNING WARNING!
    35 // These tests will DROP ALL TABLES in the database with the prefix named below.
    36 // DO NOT use a production database or one that is shared with something else.
     35/*
     36 * This configuration file will be used by the copy of WordPress being tested.
     37 * wordpress/wp-config.php will be ignored.
     38 *
     39 * WARNING WARNING WARNING!
     40 * These tests will DROP ALL TABLES in the database with the prefix named below.
     41 * DO NOT use a production database or one that is shared with something else.
     42 */
    3743
    3844define( 'DB_NAME', 'youremptytestdbnamehere' );
Note: See TracChangeset for help on using the changeset viewer.