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

21 lines
364 B
PHP
Raw Normal View History

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