| 1 | <?php |
||
| 12 | class HistogramCreateObjectTest extends TestCase |
||
| 13 | { |
||
| 14 | // /** |
||
| 15 | // * Construct object and verify that the object is instance of class |
||
| 16 | // */ |
||
| 17 | public function testCreateObjectHistogram() |
||
| 18 | { |
||
| 19 | $histogram = new Histogram(); |
||
| 20 | $this->assertInstanceOf("\Joki20\Http\Controllers\Histogram", $histogram); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |