16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
namespace Glmdev\Meta\Tests;
|
|
|
|
use Glmdev\Meta\Meta;
|
|
|
|
class MetaTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
// TODO: write tests
|
|
|
|
public function testItReturnsTrue ()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|