supports() public method

{@inheritDoc}
public supports ( $packageType )
Example #1
0
 /**
  * testSupports
  *
  * @return void
  *
  * @dataProvider dataForTestSupport
  */
 public function testSupports($type, $expected)
 {
     $installer = new Installer($this->io, $this->composer);
     $this->assertSame($expected, $installer->supports($type), sprintf('Failed to show support for %s', $type));
 }