This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/tests/AbstractTest.php
2014-05-05 17:47:30 +02:00

10 lines
116 B
PHP

<?php
class AbstractTest
{
public $assert;
public function __construct()
{
$this->assert = new Assert();
}
}