msqur/tests/MsqurTest.php

27 lines
359 B
PHP
Raw Normal View History

2016-03-31 16:00:52 -07:00
<?php
2019-10-14 19:22:41 -07:00
use PHPUnit\Framework\TestCase;
2016-03-31 16:00:52 -07:00
2019-10-14 19:15:49 -07:00
//require "../src/msqur.php";
2016-03-31 16:00:52 -07:00
2019-10-14 19:23:56 -07:00
class MsqurTest extends TestCase
2016-03-31 16:00:52 -07:00
{
// ...
public function testCanBeInstantiated()
{
// Arrange
//$msqur = new Msqur();
// Act
// Assert
//$this->assertNotNull($msqur);
$this->assertNull(null);
}
// ...
}
?>