risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4Connect.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getConnection() |
risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4DisConnect.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getConnection() |
risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4DoQuery.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getConnection() |
risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4ExecAndTransactions.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getconnection() |
risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4GetAttribute.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getconnection() |
risoluto/lib/vendor_test/Risoluto/DbTest/DbTest4SetAttribute.php 1 location
|
@@ 41-62 (lines=22) @@
|
| 38 |
|
* |
| 39 |
|
* テストに必要な準備を実施 |
| 40 |
|
*/ |
| 41 |
|
protected function setUp() |
| 42 |
|
{ |
| 43 |
|
// 拡張モジュールがロードされているかをチェック |
| 44 |
|
if (!extension_loaded( 'mysqli' )) { |
| 45 |
|
$this->markTestSkipped( 'Cannot use mysqli expansion module.' ); |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
if (!isset( $GLOBALS[ 'DB_DRIVER' ] )) { |
| 49 |
|
$this->markTestSkipped( 'DB_DRIVER was not defined. Check phpunit.xml' ); |
| 50 |
|
} elseif (!isset( $GLOBALS[ 'DB_USER' ] )) { |
| 51 |
|
$this->markTestSkipped( 'DB_USER was not defined. Check phpunit.xml' ); |
| 52 |
|
} elseif (!isset( $GLOBALS[ 'DB_PASSWORD' ] )) { |
| 53 |
|
$this->markTestSkipped( 'DB_PASSWORD was not defined. Check phpunit.xml' ); |
| 54 |
|
} elseif (!isset( $GLOBALS[ 'DB_DBNAME' ] )) { |
| 55 |
|
$this->markTestSkipped( 'DB_DBNAME was not defined. Check phpunit.xml' ); |
| 56 |
|
} elseif (!isset( $GLOBALS[ 'DB_HOST' ] )) { |
| 57 |
|
$this->markTestSkipped( 'DB_HOST was not defined. Check phpunit.xml' ); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
// DB周りの初期化を行う為に元々のsetUp()をコールする |
| 61 |
|
parent::setUp(); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
/** |
| 65 |
|
* getconnection() |