<?php
final class PhabricatorTrivialTestCase extends PhabricatorTestCase {
private $two;
protected function willRunOneTest($test_name) {
$this->two = 2;
}
public function testAllIsRightWithTheWorld() {
$this->assertEqual(4, $this->two + $this->two, '2 + 2 = 4');
}
}