matrix-php-sdk/tests/ExampleTest.php

15 lines
237 B
PHP
Raw Normal View History

2013-08-07 17:33:05 +00:00
<?php
2016-02-29 07:12:33 +00:00
namespace League\Skeleton;
2013-08-07 17:33:05 +00:00
class ExampleTest extends \PHPUnit_Framework_TestCase
{
/**
2014-02-01 23:15:08 +00:00
* Test that true does in fact equal true
2013-08-07 17:33:05 +00:00
*/
public function testTrueIsTrue()
{
$this->assertTrue(true);
}
}