generated from yiisoft/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
75 changed files
with
964 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\AllHandlerWithReaderTestTrait; | ||
|
||
abstract class AllHandlerTest extends TestCase | ||
{ | ||
use AllHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\AnyHandlerWithReaderTestTrait; | ||
|
||
abstract class AnyHandlerTest extends TestCase | ||
{ | ||
use AnyHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\BetweenHandlerWithReaderTestTrait; | ||
|
||
abstract class BetweenHandlerTest extends TestCase | ||
{ | ||
use BetweenHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\EqualsHandlerWithReaderTestTrait; | ||
|
||
abstract class EqualsHandlerTest extends TestCase | ||
{ | ||
use EqualsHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\EqualsNullHandlerWithReaderTestTrait; | ||
|
||
abstract class EqualsNullHandlerTest extends TestCase | ||
{ | ||
use EqualsNullHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\GreaterThanHandlerWithReaderTestTrait; | ||
|
||
abstract class GreaterThanHandlerTest extends TestCase | ||
{ | ||
use GreaterThanHandlerWithReaderTestTrait; | ||
} |
13 changes: 13 additions & 0 deletions
13
tests/Base/FilterHandler/GreaterThanOrEqualHandlerTest.php
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\GreaterThanOrEqualHandlerWithReaderTestTrait; | ||
|
||
abstract class GreaterThanOrEqualHandlerTest extends TestCase | ||
{ | ||
use GreaterThanOrEqualHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\LessThanHandlerWithReaderTestTrait; | ||
|
||
abstract class LessThanHandlerTest extends TestCase | ||
{ | ||
use LessThanHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\LessThanOrEqualHandlerWithReaderTestTrait; | ||
|
||
abstract class LessThanOrEqualHandlerTest extends TestCase | ||
{ | ||
use LessThanOrEqualHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\LikeHandlerWithReaderTestTrait; | ||
|
||
abstract class LikeHandlerTest extends TestCase | ||
{ | ||
use LikeHandlerWithReaderTestTrait; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Base\TestCase; | ||
use Yiisoft\Data\Tests\Common\Reader\FilterHandler\NotHandlerWithReaderTestTrait; | ||
|
||
abstract class NotHandlerTest extends TestCase | ||
{ | ||
use NotHandlerWithReaderTestTrait; | ||
} |
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,14 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Base; | ||
|
||
use Yiisoft\Data\Db\QueryDataReader; | ||
use Yiisoft\Data\Reader\DataReaderInterface; | ||
use Yiisoft\Db\Query\Query; | ||
|
||
trait ReaderTrait | ||
{ | ||
|
||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class AllHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\AllHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class AnyHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\AnyHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class BetweenHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\BetweenHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class EqualsHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\EqualsHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class EqualsNullHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\EqualsNullHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class GreaterThanHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\GreaterThanHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
13 changes: 13 additions & 0 deletions
13
tests/Mssql/FilterHandler/GreaterThanOrEqualHandlerTest.php
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Mssql\FilterHandler; | ||
|
||
use Yiisoft\Data\Db\Tests\Mssql\DatabaseTrait; | ||
|
||
class GreaterThanOrEqualHandlerTest extends \Yiisoft\Data\Db\Tests\Base\FilterHandler\GreaterThanOrEqualHandlerTest | ||
{ | ||
use DatabaseTrait; | ||
} | ||
|
Oops, something went wrong.