This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/tests/simple_test.php

19 lines
272 B
PHP
Raw Normal View History

2014-02-10 00:33:57 -05:00
<?php
require_once('../lib/simpletest/autorun.php');
class SimpleTestCase extends UnitTestCase {
var $options;
function SimpleTestCase() {
$options = getopt("database:url:");
}
function testOptions() {
print_r($options);
$this->assertTrue(true);
}
}