2017-02-05 15:42:00 +01:00
|
|
|
<?php
|
|
|
|
|
2017-08-18 21:08:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ExampleTest.php
|
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2017-08-12 10:27:45 +02:00
|
|
|
declare(strict_types=1);
|
2017-08-11 05:36:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ExampleTest.php
|
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2017-02-05 15:42:00 +01:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
2017-02-25 05:57:01 +01:00
|
|
|
|
2017-08-12 10:27:45 +02:00
|
|
|
/**
|
|
|
|
* Class ExampleTest
|
|
|
|
*
|
|
|
|
* @package Tests\Unit
|
|
|
|
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
|
|
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
|
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
|
|
|
*/
|
2017-02-05 15:42:00 +01:00
|
|
|
class ExampleTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A basic test example.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testBasicTest()
|
|
|
|
{
|
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
2017-02-05 19:51:58 +01:00
|
|
|
}
|