1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?php
namespace Phing\Test\Task\System;
use Phing\Exception\BuildException;
use Phing\Test\Support\BuildFileTest;
/**
* Tests the Relentless Task.
*
* @author Siad Ardroumli <siad.ardroumli@gmail.com>
*
* @internal
*/
class RelentlessTest extends BuildFileTest
{
public function setUp(): void
{
$this->configureProject(
PHING_TEST_BASE . '/etc/tasks/system/RelentlessTest.xml'
);
}
public function testRelentless(): void
{
$this->expectLogContaining(__FUNCTION__, 'Executing: task 3');
}
public function testTerse(): void
{
$this->executeTarget(__FUNCTION__);
$this->assertNotInLogs('Executing: task 3');
}
public function testFailure(): void
{
$this->expectException(BuildException::class);
$this->expectExceptionMessage('Relentless execution: 1 of 5 tasks failed.');
$this->executeTarget(__FUNCTION__);
$this->assertInLogs('Task task 3 failed: baz');
}
}
|