2017-03-03 01:47:00 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse;
|
2017-03-03 01:47:00 +00:00
|
|
|
|
|
|
|
|
2017-07-08 01:06:38 +00:00
|
|
|
class TestUserMockInternal extends Test\AbstractTest {
|
|
|
|
use Test\User\CommonTests;
|
2017-03-03 01:47:00 +00:00
|
|
|
|
2017-04-07 01:41:21 +00:00
|
|
|
const USER1 = "john.doe@example.com";
|
|
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
|
|
|
|
public $drv = Test\User\DriverInternalMock::class;
|
2017-03-03 01:47:00 +00:00
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
function setUpSeries() {
|
2017-04-07 01:41:21 +00:00
|
|
|
Data::$db = null;
|
|
|
|
}
|
2017-03-03 01:47:00 +00:00
|
|
|
}
|