-
-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,64 @@ public function maskOutput() | |
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->messageLogged($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function buildStarted() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->buildStarted($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function buildFinished() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->buildFinished($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function targetStarted() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->targetStarted($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function targetFinished() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->targetFinished($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function taskStarted() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->taskStarted($event)); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function taskFinished() | ||
{ | ||
$event = new BuildEvent(new Project()); | ||
$event->setMessage('https://foo:[email protected]', $event->getPriority()); | ||
$this->assertNull($this->logger->taskFinished($event)); | ||
} | ||
} |