Plum\Plum\WorkflowTest::addConverterWithArrayShouldAddConverterToWorkflow PHP Method

addConverterWithArrayShouldAddConverterToWorkflow() public method

    public function addConverterWithArrayShouldAddConverterToWorkflow()
    {
        $converter = $this->getMockConverter();
        $this->workflow->addConverter(['converter' => $converter]);
        $this->assertSame($converter, $this->workflow->getConverters()[0]->getConverter());
    }
WorkflowTest