2013-08-07 17:33:05 +00:00
|
|
|
<?php
|
|
|
|
|
2018-11-27 11:01:37 +00:00
|
|
|
namespace Aryess\PhpMatrixSdk;
|
2013-08-07 17:33:05 +00:00
|
|
|
|
2017-06-30 18:05:48 +00:00
|
|
|
class ExampleTest extends \PHPUnit\Framework\TestCase
|
2013-08-07 17:33:05 +00:00
|
|
|
{
|
|
|
|
/**
|
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);
|
|
|
|
}
|
|
|
|
}
|