2017-02-05 15:42:00 +01:00
|
|
|
<?php
|
|
|
|
|
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-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
|
|
|
}
|