Add addActionToGroupId
This commit is contained in:
@@ -106,6 +106,13 @@ class CharacterViewpointTest extends CoreModelTestCase
|
||||
|
||||
$this->assertEquals($ag2, $input->findActionGroupById('id2'));
|
||||
$this->assertNull($input->findActionGroupById('not-there'));
|
||||
|
||||
$testAction = new Action(4);
|
||||
$input->addActionToGroupId($testAction, 'not-there');
|
||||
$this->assertNull($input->findActionById($testAction->getId()));
|
||||
|
||||
$input->addActionToGroupId($testAction, 'id2');
|
||||
$this->assertNotNull($input->findActionById($testAction->getId()));
|
||||
}
|
||||
|
||||
public function testAttachments()
|
||||
|
||||
Reference in New Issue
Block a user