Skip to content

Commit

Permalink
Merge pull request #68 from efcor/master
Browse files Browse the repository at this point in the history
fix deprecated phpunit tests
  • Loading branch information
efcor authored Aug 1, 2024
2 parents f508c7d + 3596341 commit 692ebe1
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/OracleDBOCIStatementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,38 @@

class OracleDBOCIStatementTest extends TestCase
{
public $oci;

public $stmt;

public $resultUpperArray;

public $resultUpperObject;

public $resultLowerArray;

public $resultLowerObject;

public $resultNumArray;

public $resultBothUpperArray;

public $resultBothLowerArray;

public $resultAllUpperArray;

public $resultAllUpperObject;

public $resultAllLowerArray;

public $resultAllLowerObject;

public $resultAllNumArray;

public $resultAllBothUpperArray;

public $resultAllBothLowerArray;

protected function setUp(): void
{
if (! extension_loaded('oci8')) {
Expand Down

0 comments on commit 692ebe1

Please sign in to comment.