Page MenuHomec4science

ExecPassthruTestCase.php
No OneTemporary

File Metadata

Created
Fri, Nov 22, 10:30

ExecPassthruTestCase.php

<?php
final class ExecPassthruTestCase extends PhutilTestCase {
public function testExecPassthru() {
// NOTE: We're limited in what we can do here easily; this process can't
// read any output from the child process (and it will be sent directly to
// the terminal, which is undesirable). This makes crafting effective unit
// tests a fairly involved process.
$exec = new PhutilExecPassthru('exit');
$err = $exec->execute();
$this->assertEqual(0, $err);
}
}

Event Timeline