2017-03-02 20:47:00 -05:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
2017-03-28 00:12:12 -04:00
|
|
|
namespace JKingWeb\Arsse;
|
2017-03-02 20:47:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
class TestUserInternalDriver extends \PHPUnit\Framework\TestCase {
|
|
|
|
use Test\Tools, Test\User\CommonTests;
|
|
|
|
|
|
|
|
const USER1 = "john.doe@example.com";
|
|
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
|
2017-03-28 18:50:00 -04:00
|
|
|
public $drv = User\Internal\Driver::class;
|
2017-03-02 20:47:00 -05:00
|
|
|
}
|