for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\GBProd\ElasticsearchDataProviderBundle\Event;
use GBProd\ElasticsearchDataProviderBundle\Event\HasStartedHandling;
use GBProd\ElasticsearchDataProviderBundle\DataProvider\RegistryEntry;
/**
* Tests for HasStartedHandling
*
* @author gbprod <[email protected]>
*/
class HasStartedHandlingTest extends \PHPUnit_Framework_TestCase
{
public function testConstruction()
$testedInstance = new HasStartedHandling(['entries']);
$this->assertEquals(['entries'], $testedInstance->getEntries());
}