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
No EOL
309 B
PHP
13 lines
No EOL
309 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
|
class TestUserMockExternal extends \PHPUnit\Framework\TestCase {
|
|
use Test\Tools, Test\User\CommonTests;
|
|
|
|
const USER1 = "john.doe@example.com";
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
public $drv = Test\User\DriverExternalMock::class;
|
|
} |