2014-07-29 13:25:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Installer;
|
|
|
|
|
|
|
|
use Composer\Installer\InstallerEvent;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2014-07-29 13:25:16 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class InstallerEventTest extends TestCase
|
2014-07-29 13:25:16 +00:00
|
|
|
{
|
|
|
|
public function testGetter()
|
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$composer = $this->getMockBuilder('Composer\Composer')->getMock();
|
|
|
|
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2020-01-30 21:10:39 +00:00
|
|
|
$transaction = $this->getMockBuilder('Composer\DependencyResolver\LockTransaction')->disableOriginalConstructor()->getMock();
|
2020-02-12 13:35:31 +00:00
|
|
|
$event = new InstallerEvent('EVENT_NAME', $composer, $io, true, true, $transaction);
|
2014-07-29 13:25:16 +00:00
|
|
|
|
|
|
|
$this->assertSame('EVENT_NAME', $event->getName());
|
|
|
|
$this->assertInstanceOf('Composer\Composer', $event->getComposer());
|
|
|
|
$this->assertInstanceOf('Composer\IO\IOInterface', $event->getIO());
|
2015-02-23 15:31:54 +00:00
|
|
|
$this->assertTrue($event->isDevMode());
|
2020-02-12 13:35:31 +00:00
|
|
|
$this->assertTrue($event->isExecutingOperations());
|
2020-01-30 21:10:39 +00:00
|
|
|
$this->assertInstanceOf('Composer\DependencyResolver\Transaction', $event->getTransaction());
|
2014-07-29 13:25:16 +00:00
|
|
|
}
|
|
|
|
}
|