szurubooru/tests/AbstractTest.php

11 lines
116 B
PHP
Raw Normal View History

2014-05-04 21:23:12 +02:00
<?php
class AbstractTest
{
public $assert;
public function __construct()
{
$this->assert = new Assert();
}
}