mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
a67fe30408
Also fixed my editor so tabs won't happen again!
13 lines
304 B
PHP
13 lines
304 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
|
class TestUserInternalDriver extends \PHPUnit\Framework\TestCase {
|
|
use Test\Tools, Test\User\CommonTests;
|
|
|
|
const USER1 = "john.doe@example.com";
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
public $drv = User\Internal\Driver::class;
|
|
}
|