Skip to content
Snippets Groups Projects
Commit d2558ce2 authored by Nadir Sunar's avatar Nadir Sunar Committed by Susanne Moog
Browse files

[TASK] Replace @expectedException annotation in sysext:scheduler

Use expectException() instead of @expectedException in unit tests
and add expectedExceptionCode() where possible.
This patch handles occurences in sysext:scheduler.

Releases: master
Resolves: #76506
Change-Id: I545836f86504f2f8297799dfc4c6e370bbd4fbdf
Reviewed-on: https://review.typo3.org/48501


Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarSusanne Moog <typo3@susannemoog.de>
Tested-by: default avatarSusanne Moog <typo3@susannemoog.de>
parent 1ddcaaa3
Branches
Tags
No related merge requests found
......@@ -60,10 +60,11 @@ class CronCommandTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
/**
* @test
* @expectedException \InvalidArgumentException
*/
public function constructorThrowsExceptionForInvalidCronCommand()
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionCode(1291470170);
new CronCommand('61 * * * *');
}
......@@ -307,10 +308,11 @@ class CronCommandTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
/**
* @test
* @expectedException \RuntimeException
*/
public function calculateNextValueThrowsExceptionWithImpossibleCronCommand()
{
$this->expectException(\RuntimeException::class);
$this->expectExceptionCode(1291501280);
$instance = new CronCommand('* * 31 apr *', self::TIMESTAMP);
$instance->calculateNextValue();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment