PhpSpec\Formatter\JUnitFormatter::initTestCaseNodes PHP Method

initTestCaseNodes() protected method

Initialize test case nodes and example status counts
protected initTestCaseNodes ( )
    protected function initTestCaseNodes()
    {
        $this->testCaseNodes = array();
        $this->exampleStatusCounts = array(ExampleEvent::PASSED => 0, ExampleEvent::PENDING => 0, ExampleEvent::SKIPPED => 0, ExampleEvent::FAILED => 0, ExampleEvent::BROKEN => 0);
    }