2020-01-23 21:35:00 +01:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-01-23 21:35:00 +01:00
|
|
|
namespace Tests\Unit\Migration;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class ImportTest extends TestCase
|
|
|
|
{
|
|
|
|
use MockAccountData;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
2020-02-01 21:45:23 +01:00
|
|
|
public $migration_array;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp(): void
|
2020-01-23 21:35:00 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
2020-02-01 21:45:23 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$migration_file = base_path().'/tests/Unit/Migration/migration.json';
|
2020-10-30 22:13:02 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->migration_array = json_decode(file_get_contents($migration_file), 1);
|
2020-01-23 21:35:00 +01:00
|
|
|
}
|
|
|
|
|
2020-03-28 05:29:52 +01:00
|
|
|
public function testImportClassExists()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
$status = class_exists(\App\Jobs\Util\Import::class);
|
2020-01-27 08:49:04 +01:00
|
|
|
|
2020-03-28 05:29:52 +01:00
|
|
|
$this->assertTrue($status);
|
|
|
|
}
|
2020-01-23 21:35:00 +01:00
|
|
|
|
|
|
|
}
|