for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace ShopwareEnvironmentVariablesTests\Subscriber\Unit;
use PHPUnit\Framework\TestCase;
use ShopwareEnvironmentVariables\ShopwareEnvironmentVariables;
/**
* @coversDefaultClass \ShopwareEnvironmentVariables\ShopwareEnvironmentVariables
*/
class PluginSubscriberTest extends TestCase
{
* @covers ::getSubscribedEvents()
public function testSubscribedEvents()
$subscriber = new ShopwareEnvironmentVariables(true);
self::assertEmpty($subscriber::getSubscribedEvents());
}