Current path: home/webdevt/www/demo2/wp-content/plugins/cookiebot/tests/integration/addons/
?? Go up: /home/webdevt/www/demo2/wp-content/plugins/cookiebot/tests/integration
<?php
namespace cybot\cookiebot\tests\integration\addons;
use cybot\cookiebot\addons\controller\addons\pixel_caffeine\Pixel_Caffeine;
use PHPUnit\Framework\ExpectationFailedException;
use SebastianBergmann\RecursionContext\InvalidArgumentException;
use WP_UnitTestCase;
class Test_Pixel_Caffeine extends WP_UnitTestCase {
/**
* @covers \cybot\cookiebot\addons\controller\addons\pixel_caffeine\Pixel_Caffeine
* @throws ExpectationFailedException
* @throws InvalidArgumentException
* @throws \Exception
*/
public function test_is_plugin_compatible() {
$content = Pixel_Caffeine::get_svn_file_content( 'includes/class-aepc-pixel-scripts.php' );
$this->assertNotFalse( strpos( $content, 'add_action( \'wp_head\', array( __CLASS__, \'pixel_init\' ), 99 );' ) );
$this->assertNotFalse( strpos( $content, 'add_action( \'wp_footer\', array( __CLASS__, \'pixel_init\' ), 1 );' ) );
$this->assertNotFalse( strpos( $content, 'wp_register_script( \'aepc-pixel-events\',' ) );
}
}