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:
Thilina Hasantha
2018-01-08 23:13:43 +01:00
committed by GitHub
parent 359e3f8382
commit e7792e7d79
2349 changed files with 117270 additions and 83170 deletions

View File

@@ -0,0 +1,78 @@
<?php
$localFile = __DIR__ . '/../../PEAR/Exception.php';
if (file_exists($localFile)) {
require_once $localFile;
} else {
require_once 'PEAR/Exception.php';
}
class PEAR_ExceptionTest extends PHPUnit_Framework_TestCase
{
/**
* @expectedException PEAR_Exception
* @expectedExceptionMessage foo
*/
public function testThrow()
{
throw new PEAR_Exception('foo');
}
public function testGetCauseNone()
{
$e = new PEAR_Exception('foo bar');
$this->assertNull($e->getCause());
}
public function testGetCauseException()
{
$cause = new Exception('foo bar');
$e = new PEAR_Exception('I caught an exception', $cause);
$this->assertNotNull($e->getCause());
$this->assertInstanceOf('Exception', $e->getCause());
$this->assertEquals($cause, $e->getCause());
}
public function testGetCauseMessage()
{
$cause = new Exception('foo bar');
$e = new PEAR_Exception('I caught an exception', $cause);
$e->getCauseMessage($causes);
$this->assertEquals('I caught an exception', $causes[0]['message']);
$this->assertEquals('foo bar', $causes[1]['message']);
}
public function testGetTraceSafe()
{
$e = new PEAR_Exception('oops');
$this->assertInternalType('array', $e->getTraceSafe());
}
public function testGetErrorClass()
{
$e = new PEAR_Exception('oops');
$this->assertEquals('PEAR_ExceptionTest', $e->getErrorClass());
}
public function testGetErrorMethod()
{
$e = new PEAR_Exception('oops');
$this->assertEquals('testGetErrorMethod', $e->getErrorMethod());
}
public function test__toString()
{
$e = new PEAR_Exception('oops');
$this->assertInternalType('string', (string) $e);
$this->assertContains('oops', (string) $e);
}
public function testToHtml()
{
$e = new PEAR_Exception('oops');
$html = $e->toHtml();
$this->assertInternalType('string', $html);
$this->assertContains('oops', $html);
}
}
?>