class PropertyGroupAdminSearchIndexerTest extends TestCase
{ private PropertyGroupAdminSearchIndexer
$searchIndexer;
protected function setUp(): void
{ $this->searchIndexer =
new PropertyGroupAdminSearchIndexer( $this->
createMock(Connection::
class),
$this->
createMock(IteratorFactory::
class),
$this->
createMock(EntityRepository::
class),
100
);
} public function testGetEntity(): void
{ static::
assertSame(PropertyGroupDefinition::ENTITY_NAME,
$this->searchIndexer->
getEntity());
}