1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-11 02:12:40 +00:00
Arsse/tests/User/TestUser.php

18 lines
358 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
class TestUser extends \PHPUnit\Framework\TestCase {
use Test\Tools;
protected $data;
function setUp() {
$conf = new Conf();
$conf->userDriver = Test\User\DriverInternalMock::class;
$this->data = new Test\RuntimeData($conf);
$this->data->user = new User($this->data);
}
}