2017-03-02 20:47:00 -05:00
|
|
|
<?php
|
2017-11-16 20:23:18 -05:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-03-02 20:47:00 -05:00
|
|
|
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 TestUserMockExternal 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\DriverExternalMock::class;
|
2017-08-29 10:50:31 -04:00
|
|
|
}
|