PHP code example of emeraldjava / wordpress-tests-core

1. Go to this page and download the library: Download emeraldjava/wordpress-tests-core library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

emeraldjava / wordpress-tests-core example snippets


├── composer.json
├── phpunit.xml
└──  tests
   ├── wp-tests-config.php [REQUIRED]
   └── core
       ├── bootstrap.php
       ├── ...

<phpunit
	bootstrap="tests/core/bootstrap.php"
	...