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

50 lines
1.0 KiB
PHP
Raw Normal View History

2019-06-12 06:22:05 +02:00
<?php
2020-09-14 13:11:46 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
2019-06-12 06:22:05 +02:00
namespace Tests\Unit;
use App\Utils\Traits\MakesHash;
use Tests\TestCase;
/**
* @test
2019-09-11 08:54:14 +02:00
* @covers App\Utils\Traits\MakesHash
2019-06-12 06:22:05 +02:00
*/
class PrimaryKeyTransformationTest extends TestCase
{
use MakesHash;
2019-06-12 06:22:05 +02:00
protected function setUp() :void
2019-06-12 06:22:05 +02:00
{
parent::setUp();
}
2019-06-12 06:22:05 +02:00
public function testTransformationArray()
{
$keys = [
$this->encodePrimaryKey(310), $this->encodePrimaryKey(311),
];
2019-06-12 06:22:05 +02:00
$transformed_keys = $this->transformKeys($keys);
2019-06-12 06:22:05 +02:00
$this->assertEquals(310, $transformed_keys[0]);
2019-06-12 06:22:05 +02:00
$this->assertEquals(311, $transformed_keys[1]);
}
2019-06-12 06:22:05 +02:00
public function testTransformation()
{
$keys = $this->encodePrimaryKey(310);
2019-06-12 06:22:05 +02:00
$this->assertEquals(310, $this->transformKeys($keys));
}
2019-06-12 06:22:05 +02:00
}