EclipseReporter::paintPass PHP Метод

paintPass() публичный Метод

Stash the first passing item. Clicking the test item goes to first pass.
public paintPass ( string $message )
$message string Test message, but we only wnat the first.
    public function paintPass($message)
    {
        if (!$this->pass) {
            $this->message = self::escapeVal($message);
        }
        $this->pass = true;
    }