eZ\Publish\Core\SignalSlot\Tests\SignalDispatcher\GeneralSlotFactoryTest::testValidSlot PHP Method

testValidSlot() public method

public testValidSlot ( $slots )
    public function testValidSlot($slots)
    {
        $factory = $this->setUpFactory($slots);
        foreach ($slots as $slotIdentifier => $slotValue) {
            $this->assertEquals($slotValue, $factory->getSlot($slotIdentifier));
        }
    }