| 1 | <?php |
||
| 9 | class ActionTest extends AdminTestBase |
||
| 10 | { |
||
| 11 | public function testGetters() |
||
| 12 | { |
||
| 13 | $configuration = $this->getMockWithoutConstructor(ActionConfiguration::class); |
||
| 14 | $action = new Action('test', $configuration); |
||
| 15 | |||
| 16 | $this->assertEquals('test', $action->getName()); |
||
| 17 | $this->assertEquals($configuration, $action->getConfiguration()); |
||
| 18 | } |
||
| 19 | } |
||
| 20 |