| 1 |
<?php |
| 2 |
|
| 3 |
namespace cybot\cookiebot\tests\integration\addons; |
| 4 |
|
| 5 |
use cybot\cookiebot\addons\controller\addons\hubspot_tracking_code\Hubspot_Tracking_Code; |
| 6 |
use PHPUnit\Framework\ExpectationFailedException; |
| 7 |
use SebastianBergmann\RecursionContext\InvalidArgumentException; |
| 8 |
use WP_UnitTestCase; |
| 9 |
|
| 10 |
class Test_Hubspot_Tracking_Code extends WP_UnitTestCase { |
| 11 |
|
| 12 |
/** |
| 13 |
* @covers \cybot\cookiebot\addons\controller\addons\hubspot_tracking_code\Hubspot_Tracking_Code |
| 14 |
* @throws ExpectationFailedException |
| 15 |
* @throws InvalidArgumentException |
| 16 |
* @throws \Exception |
| 17 |
*/ |
| 18 |
public function test_is_plugin_compatible() { |
| 19 |
$content = Hubspot_Tracking_Code::get_svn_file_content( 'inc/class-hubspot-tracking-code-analytics.php' ); |
| 20 |
|
| 21 |
$this->assertNotFalse( strpos( $content, '<script type="text/javascript" id="hs-script-loader"' ) ); |
| 22 |
} |
| 23 |
} |
| 24 |
|