Open Monograph Press  3.3.0
RuntimeExceptionTest.php
1 <?php
2 
4 
5 use Omnipay\Tests\TestCase;
6 
7 class RuntimeExceptionTest extends TestCase
8 {
9  public function testConstruct()
10  {
11  $exception = new RuntimeException('Oops');
12  $this->assertSame('Oops', $exception->getMessage());
13  }
14 }
Omnipay\Common\Exception\RuntimeException
Definition: lib/vendor/omnipay/common/src/Omnipay/Common/Exception/RuntimeException.php:8
Omnipay\Common\Exception\RuntimeExceptionTest\testConstruct
testConstruct()
Definition: RuntimeExceptionTest.php:9
Omnipay\Common\Exception
Definition: lib/vendor/omnipay/common/src/Omnipay/Common/Exception/BadMethodCallException.php:3
Omnipay\Common\Exception\RuntimeExceptionTest
Definition: RuntimeExceptionTest.php:7