2017-03-02 20:47:00 -05:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-27 23:12:12 -05:00
|
|
|
namespace JKingWeb\Arsse;
|
2017-03-02 20:47:00 -05:00
|
|
|
|
2017-07-20 18:36:03 -04:00
|
|
|
/** @covers \JKingWeb\Arsse\User */
|
2017-07-07 21:06:38 -04:00
|
|
|
class TestUserMockInternal extends Test\AbstractTest {
|
|
|
|
use Test\User\CommonTests;
|
2017-03-02 20:47:00 -05:00
|
|
|
|
2017-04-06 21:41:21 -04:00
|
|
|
const USER1 = "john.doe@example.com";
|
|
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
|
|
|
|
public $drv = Test\User\DriverInternalMock::class;
|
2017-03-02 20:47:00 -05:00
|
|
|
|
2017-03-28 18:50:00 -04:00
|
|
|
function setUpSeries() {
|
2017-07-17 07:47:57 -04:00
|
|
|
Arsse::$db = null;
|
2017-04-06 21:41:21 -04:00
|
|
|
}
|
2017-03-02 20:47:00 -05:00
|
|
|
}
|