faker = \Faker\Factory::create(); Model::reguard(); } public function testUserCreate() { $new_user = UserFactory::create(); $new_user->email = $this->faker->email; $new_user->save(); $this->assertNotNull($new_user); $this->assertInternalType("int", $new_user->id); } }