Optimized coverage for AbstractOperation

This commit is contained in:
Kevin Frantz 2018-10-31 13:29:52 +01:00
parent 5848bec9ce
commit 38539aa9ed

View File

@ -44,7 +44,7 @@ class AbstractOperationTest extends TestCase
};
$operands = new ArrayCollection();
$operands->add($operand);
$this->operation->setOperands($operands);
$this->assertNull($this->operation->setOperands($operands));
$this->assertEquals($operand, $this->operation->getOperands()
->get(0));
}