mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
c339c25d9c
* Fixes for tests * payment terms policies and repo * Bulk actions for payment terms * Fixes for documentation * working on payment failure mailer
60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Models\PaymentTerm;
|
|
use App\Utils\Traits\UserSessionAttributes;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
class CollectionMergingTest extends TestCase
|
|
{
|
|
use UserSessionAttributes;
|
|
|
|
public function setUp() :void
|
|
{
|
|
parent::setUp();
|
|
|
|
Session::start();
|
|
|
|
}
|
|
|
|
public function testUniqueValues()
|
|
{
|
|
$methods[] = [1 => 1];
|
|
$methods[] = [1 => 2];
|
|
$methods[] = [1 => 3];
|
|
$methods[] = [1 => 4];
|
|
$methods[] = [1 => 5];
|
|
$methods[] = [1 => 6];
|
|
|
|
$other_methods[] = [2 => 1];
|
|
$other_methods[] = [2 => 7];
|
|
$other_methods[] = [2 => 8];
|
|
$other_methods[] = [2 => 9];
|
|
$other_methods[] = [2 => 10];
|
|
|
|
$array = array_merge($methods, $other_methods);
|
|
|
|
$this->assertEquals(11, count($array));
|
|
|
|
$collection = collect($array);
|
|
|
|
$intersect = $collection->intersectByKeys($collection->flatten(1)->unique());
|
|
|
|
$this->assertEquals(10, $intersect->count());
|
|
|
|
$third_methods[] = [3 => 1];
|
|
$third_methods[] = [2 => 11];
|
|
|
|
$array = array_merge($array, $third_methods);
|
|
|
|
$collection = collect($array);
|
|
$intersect = $collection->intersectByKeys($collection->flatten(1)->unique());
|
|
$this->assertEquals(11, $intersect->count());
|
|
}
|
|
}
|