class DeprecatedAdminStatsBlockServiceTest extends BlockServiceTestCase
29
{
30
/**
31
* @var Pool
32
*/
33
private $pool;
34
35
protected function setUp(): void
36
{
37
parent::setUp();
38
39
$this->pool = $this->createMock(Pool::class);
40
}
41
42
/**
43
* @expectedDeprecation Passing null as argument 2 to Sonata\AdminBundle\Block\AdminStatsBlockService::__construct() is deprecated since sonata-project/admin-bundle 3.x and will throw a \TypeError in version 4.0. You must pass an instance of Sonata\AdminBundle\Admin\Pool instead.