File "URLTest.php"

Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/plainview/sdk/breadcrumbs/tests/URLTest.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace plainview\sdk_mcc\breadcrumbs\tests;

class URLTest extends TestCase
{
	public function test_url()
	{
		$url = 'http://plainview.se&testing=true';
		$string = 'href="' . $url . '"';
		$bcs = $this->bcs();
		$bc = $bcs->breadcrumb( 'test' )
			->url( $url );
		$this->assertStringContains( $string, $bc );
	}
}