PHP code example of jtsternberg / phpunit-helper-assertions

1. Go to this page and download the library: Download jtsternberg/phpunit-helper-assertions 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/ */

    

jtsternberg / phpunit-helper-assertions example snippets



namespace Jtsternberg\Example\Tests;

// You can it/PHPUnitHelperAssertionsTrait.php';

/**
 * Tests Base.
 *
 * @since   0.1.0
 * @package JtsternbergExampleTests
 */
abstract class Base extends \WP_UnitTestCase {
	use \PHPUnitHelperAssertionsTrait;

	protected static function ns( $append = '' ) {
		return "AwesomeMotive\\Example\\$append";
	}
}


/**
 * Test the core of my plugin.
 *
 * @since   0.1.0
 * @package JtsternbergExampleTests
 */
class testCore extends Base {

	public function test_core_loaded() {
		$this->assertTrue( defined( 'JTSTERNBERG_EXAMPLE_VERSION' ) );
	}

	public function test_core_loaded() {
		$expected = '<section>
			<h1>Hellow World</h1>
		</section>'
		$this->assertHTMLstringsAreEqual( $expected, func() );
	}

}