1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/Unit/PrimaryKeyTransformationTest.php
2020-09-14 21:11:46 +10:00

52 lines
1.1 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace Tests\Unit;
use App\DataMapper\ClientSettings;
use App\DataMapper\CompanySettings;
use App\Utils\Traits\MakesHash;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
/**
* @test
* @covers App\Utils\Traits\MakesHash
*/
class PrimaryKeyTransformationTest extends TestCase
{
use MakesHash;
public function setUp() :void
{
parent::setUp();
}
public function testTransformationArray()
{
$keys = [
$this->encodePrimaryKey(310), $this->encodePrimaryKey(311),
];
$transformed_keys = $this->transformKeys($keys);
$this->assertEquals(310, $transformed_keys[0]);
$this->assertEquals(311, $transformed_keys[1]);
}
public function testTransformation()
{
$keys = $this->encodePrimaryKey(310);
$this->assertEquals(310, $this->transformKeys($keys));
}
}