Playing around with Travis-ci.
This commit is contained in:
18
tests/simple_test.php
Normal file
18
tests/simple_test.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user