1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/tests/Feature/PdfCreatorTest.php

43 lines
863 B
PHP
Raw Normal View History

2020-10-26 10:13:00 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-26 10:13:00 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-10-26 10:13:00 +01:00
*/
2020-10-26 10:13:00 +01:00
namespace Tests\Feature;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Routing\Middleware\ThrottleRequests;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
*/
class PdfCreatorTest extends TestCase
{
use DatabaseTransactions;
use MockAccountData;
protected function setUp() :void
2020-10-26 10:13:00 +01:00
{
parent::setUp();
$this->makeTestData();
$this->withoutMiddleware(
ThrottleRequests::class
);
2023-05-04 01:51:09 +02:00
if(config('ninja.testvars.travis'))
$this->markTestSkipped();
2020-10-26 10:13:00 +01:00
}
}