Add pear modules, mail and net_smtp via composer (#93)
Add pear modules, mail and net_smtp via composer, remove php 5.6 build due to phpunit 6
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of the Environment package.
|
||||
* This file is part of sebastian/environment.
|
||||
*
|
||||
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
@@ -8,104 +8,104 @@
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace SebastianBergmann\Environment;
|
||||
|
||||
use PHPUnit_Framework_TestCase;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class RuntimeTest extends PHPUnit_Framework_TestCase
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime
|
||||
*/
|
||||
final class RuntimeTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var \SebastianBergmann\Environment\Runtime
|
||||
*/
|
||||
private $env;
|
||||
|
||||
protected function setUp()
|
||||
protected function setUp()/*: void*/
|
||||
{
|
||||
$this->env = new Runtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::canCollectCodeCoverage
|
||||
* @uses \SebastianBergmann\Environment\Runtime::hasXdebug
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isPHP
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testAbilityToCollectCodeCoverageCanBeAssessed()
|
||||
public function testAbilityToCollectCodeCoverageCanBeAssessed()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('boolean', $this->env->canCollectCodeCoverage());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::getBinary
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testBinaryCanBeRetrieved()
|
||||
public function testBinaryCanBeRetrieved()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('string', $this->env->getBinary());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testCanBeDetected()
|
||||
public function testCanBeDetected()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('boolean', $this->env->isHHVM());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::isPHP
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testCanBeDetected2()
|
||||
public function testCanBeDetected2()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('boolean', $this->env->isPHP());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::hasXdebug
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isPHP
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testXdebugCanBeDetected()
|
||||
public function testXdebugCanBeDetected()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('boolean', $this->env->hasXdebug());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::getNameWithVersion
|
||||
* @uses \SebastianBergmann\Environment\Runtime::getName
|
||||
* @uses \SebastianBergmann\Environment\Runtime::getVersion
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isPHP
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testNameAndVersionCanBeRetrieved()
|
||||
public function testNameAndVersionCanBeRetrieved()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('string', $this->env->getNameWithVersion());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::getName
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testNameCanBeRetrieved()
|
||||
public function testNameCanBeRetrieved()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('string', $this->env->getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::getVersion
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testVersionCanBeRetrieved()
|
||||
public function testVersionCanBeRetrieved()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('string', $this->env->getVersion());
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \SebastianBergmann\Environment\Runtime::getVendorUrl
|
||||
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
|
||||
* @todo Now that this component is PHP 7-only and uses return type declarations
|
||||
* this test makes even less sense than before
|
||||
*/
|
||||
public function testVendorUrlCanBeRetrieved()
|
||||
public function testVendorUrlCanBeRetrieved()/*: void*/
|
||||
{
|
||||
$this->assertInternalType('string', $this->env->getVendorUrl());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user