Esempio n. 1
0
 /**
  * Tests the condition container setter and getter.
  *
  * @covers ::setActions
  * @covers ::getActions
  */
 public function testSetActionsGetActions()
 {
     $action_set = new ActionSet([], '', [], $this->expressionManager->reveal());
     $this->rule->setActions($action_set);
     $this->assertSame($action_set, $this->rule->getActions());
 }