Commit 9d3625ee authored by Benjamin Eberlei's avatar Benjamin Eberlei

SKip if oci8 not installed

parent 6181678f
...@@ -6,6 +6,12 @@ require_once __DIR__ . '/../../../TestInit.php'; ...@@ -6,6 +6,12 @@ require_once __DIR__ . '/../../../TestInit.php';
class OCI8StatementTest extends \Doctrine\Tests\DbalTestCase class OCI8StatementTest extends \Doctrine\Tests\DbalTestCase
{ {
public function setUp()
{
if ( ! extension_loaded('oci8')) {
$this->markTestSkipped();
}
}
protected function getMockOCI8Statement() protected function getMockOCI8Statement()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment