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
373 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
class ShimmieSimpleTestCase extends UnitTestCase {
2014-02-10 00:33:57 -05:00
var $options;
2014-02-10 00:46:43 -05:00
function ShimmieTestCase() {
$this->options = getopt("d:u:");
2014-02-10 00:33:57 -05:00
}
function testOptions() {
2014-02-10 00:54:27 -05:00
print_r($this->options);
2014-02-10 00:33:57 -05:00
$this->assertTrue(true);
}
}