getnamingo-registry/cp/tests/unit/UserTest.php
2023-08-07 13:14:05 +03:00

17 lines
281 B
PHP

<?php
class UserTest extends \PHPUnit\Framework\TestCase
{
protected $user;
public function setUp()
{
$this->user = new \App\Models\User;
}
public function testEmailVariablesContainCorrectValues()
{
$user = new \App\Models\User;
}
}