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

44 lines
909 B
PHP
Raw Normal View History

2019-06-12 06:22:05 +02:00
<?php
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
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
public function setUp() :void
{
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
}