chore: Create AccountCryptService tests

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2022-11-27 16:01:51 +01:00
parent 41b171e89d
commit 930b1f7139
51 changed files with 989 additions and 367 deletions

View File

@@ -40,7 +40,7 @@ final class TestTaskController
*/
public function testTaskAction(string $taskId): void
{
$task = TaskFactory::create($taskId, $taskId);
$task = TaskFactory::register($taskId, $taskId);
echo $task->getTaskId();
@@ -55,4 +55,4 @@ final class TestTaskController
TaskFactory::end($task);
}
}
}