mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 04:44:33 -04:00
32 lines
607 B
PHP
32 lines
607 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Tests\TestCase;
|
|
|
|
class PdfMakerDesignsTest extends TestCase
|
|
{
|
|
public $state = [];
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->state = [
|
|
'variables' => [
|
|
'$css' => asset('css/tailwindcss@1.4.6.css'),
|
|
],
|
|
];
|
|
}
|
|
|
|
public function testBusiness()
|
|
{
|
|
$state = [
|
|
'template' => [],
|
|
'variables' => $this->state['variables'],
|
|
];
|
|
}
|
|
}
|