Constructs a test case with the given filename.
string $filename:
array $options:
public function __construct($filename, array $options = array()) {
if (!is_string($filename)) {
throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'string');
}
if (!is_file($filename)) {
throw new PHPUnit_Framework_Exception(sprintf('File "%s" does not exist.', $filename));
}
$this->filename = $filename;
$this->options = $options;
}