mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 22:53:12 -06:00
26 lines
393 B
PHP
26 lines
393 B
PHP
|
<?php
|
||
|
use League\FactoryMuffin\Facade as f;
|
||
|
|
||
|
/**
|
||
|
* Class AccountTypeTest
|
||
|
*/
|
||
|
class BudgetTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
}
|
||
|
|
||
|
public function tearDown()
|
||
|
{
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
public function testUser()
|
||
|
{
|
||
|
$budget = f::create('Budget');
|
||
|
$this->assertInstanceOf('User', $budget->user);
|
||
|
|
||
|
}
|
||
|
}
|