2017-03-03 01:47:00 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-03-03 01:47:00 +00:00
|
|
|
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-20 22:36:03 +00:00
|
|
|
/** @covers \JKingWeb\Arsse\User */
|
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-08-29 14:50:31 +00:00
|
|
|
public function setUpSeries() {
|
2017-07-17 11:47:57 +00:00
|
|
|
Arsse::$db = null;
|
2017-04-07 01:41:21 +00:00
|
|
|
}
|
2017-03-03 01:47:00 +00:00
|
|
|
}
|