runConfigurationAssertions( new Group(), ['name'], ['created_at', 'updated_at'], ['*'], [], ['id' => 'int', 'twofaccounts_count' => 'integer',], ['deleting' => GroupDeleting::class] ); } /** * @test */ public function test_groups_relation() { $group = new Group(); $accounts = $group->twofaccounts(); $this->assertHasManyRelation($accounts, $group, new TwoFAccount()); } }