mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-16 17:46:59 +02:00
17 lines
281 B
PHP
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;
|
|
|
|
}
|
|
}
|