test = $test; $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['desc']; } }