blob: e088b51d30ef6cbfa40f78ecbadf7ffea8124d58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class Setup_test extends PHPUnit_Framework_TestCase {
function testNonsense()
{
$this->markTestIncomplete('not implemented');
// ensure that our bootstrapped test environment
// is a good representation of an isolated CI install
//die('here');
}
}
|