PHP code example of phpunit / phpunit-dom-assertions
1. Go to this page and download the library: Download phpunit/phpunit-dom-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/ */
phpunit / phpunit-dom-assertions example snippets
namespace My\Tests;
use PHPUnit\Framework\DOMAssert;
use PHPUnit\Framework\TestCase;
final class DOMTest extends TestCase
{
public function testSelectEquals(): void
{
$html = file_get_contents('test.html');
$selector = 'span.test_class';
$content = 'Test Class Text';
DOMAssert::assertSelectEquals($selector, $content, true, $html);
}
}