mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
Add extension test
This commit is contained in:
parent
8db0fca114
commit
24f28dc82c
24
tests/ExtensionTest.php
Normal file
24
tests/ExtensionTest.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.2
|
||||
*
|
||||
* @package TBD
|
||||
* @copyright Dennis Eichhorn
|
||||
* @license OMS License 1.0
|
||||
* @version 1.0.0
|
||||
* @link http://website.orange-management.de
|
||||
*/
|
||||
|
||||
namespace phpOMS\tests;
|
||||
|
||||
class ExtensionTest extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
public function testExtension()
|
||||
{
|
||||
self::assertTrue(extension_loaded('mbstring'));
|
||||
self::assertTrue(extension_loaded('curl'));
|
||||
self::assertTrue(extension_loaded('imap'));
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user