test = $test; $this->mode = $mode; $this->expected = $expected; $this->actual = $actual; } /** * Whether the test passed * @return bool */ public function isSuccess() { return $this->expected === $this->actual; } public function getDescription() { return "{$this->test->testName} [{$this->mode}]"; } }