forked from yiisoft/db-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…iisoft#108) * Remove src\TestSupport\TestCommandTrait::class from yiisoft/db.
- Loading branch information
1 parent
dd1ccb0
commit c10dfa3
Showing
16 changed files
with
678 additions
and
763 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Yiisoft\\Db\\Tests\\": "vendor/yiisoft/db/tests" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Db\Oracle\Tests; | ||
|
||
use Yiisoft\Db\Oracle\Tests\Support\TestTrait; | ||
use Yiisoft\Db\Tests\Common\CommonCommandPDOTest; | ||
|
||
/** | ||
* @group oracle | ||
* | ||
* @psalm-suppress PropertyNotSetInConstructor | ||
*/ | ||
final class CommandPDOTest extends CommonCommandPDOTest | ||
{ | ||
use TestTrait; | ||
|
||
/** | ||
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\CommandPDOProvider::bindParam() | ||
*/ | ||
public function testBindParam( | ||
string $field, | ||
string $name, | ||
mixed $value, | ||
int $dataType, | ||
int|null $length, | ||
mixed $driverOptions, | ||
array $expected, | ||
): void { | ||
parent::testBindParam($field, $name, $value, $dataType, $length, $driverOptions, $expected); | ||
} | ||
|
||
/** | ||
* @dataProvider \Yiisoft\Db\Oracle\Tests\Provider\CommandPDOProvider::bindParamsNonWhere() | ||
*/ | ||
public function testBindParamsNonWhere(string $sql): void | ||
{ | ||
parent::testBindParamsNonWhere($sql); | ||
} | ||
|
||
public function testColumnCase(): void | ||
{ | ||
$this->markTestSkipped('It must be implemented.'); | ||
} | ||
} |
Oops, something went wrong.