Kahlan\Reporter\Tap::end PHP Method

end() public method

Callback called at the end of specs processing.
public end ( object $summary )
$summary object The execution summary instance.
    public function end($summary)
    {
        $this->write("# total {$summary->total()}\n");
        $this->write("# passed {$summary->passed()}\n");
        $this->write("# pending {$summary->pending()}\n");
        $this->write("# skipped {$summary->skipped()}\n");
        $this->write("# excluded {$summary->excluded()}\n");
        $this->write("# failed {$summary->failed()}\n");
        $this->write("# errored {$summary->errored()}\n");
    }