Files
firefly-iii/tests/unit/BudgetTest.php
T

27 lines
389 B
PHP
Raw Normal View History

2015-01-01 12:33:07 +01:00
<?php
use League\FactoryMuffin\Facade as f;
/**
2015-01-01 13:12:05 +01:00
* Class BudgetTest
2015-01-01 12:33:07 +01:00
*/
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);
}
2015-01-02 06:16:49 +01:00
}