PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wiloke-listing-tools
/
vendor
/
konekt
/
pdf-invoice
/
tests
<?php /** * Contains the BaseClassTest class. * * @copyright Copyright (c) 2017 Attila Fulop * @author Attila Fulop * @license GPL * @since 2017-12-15 * */ namespace Konekt\PdfInvoice\Tests; use Konekt\PdfInvoice\InvoicePrinter; use PHPUnit\Framework\TestCase; class BaseClassTest extends TestCase { /** * @test */ public function can_be_instantiated() { $invoicr = new InvoicePrinter(); $this->assertInstanceOf(InvoicePrinter::class, $invoicr); } }
[+]
..
[-] BaseClassTest.php
[edit]
[-] AAASmokeTest.php
[edit]