blob: c2377dd5e457fa83058db93442117aaebf5ddaf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Tests\Unit;
use UserFrosting\Tests\TestCase;
use UserFrosting\Tests\DatabaseTransactions;
/**
* FactoriesTest class.
* Tests the factories defined in this sprinkle are working
*
* @extends TestCase
*/
class FactoriesTest extends TestCase
{
use DatabaseTransactions;
function testUserFactory() {
$fm = $this->ci->factory;
$user = $fm->create('UserFrosting\Sprinkle\Account\Database\Models\User');
$this->assertInstanceOf('UserFrosting\Sprinkle\Account\Database\Models\User', $user);
}
}
|