Code Duplication    Length = 8-8 lines in 2 locations

lib/Util/Phpunit5/MasterListener.php 2 locations

@@ 120-127 (lines=8) @@
117
        $this->play(__FUNCTION__, func_get_args());
118
    }
119
120
    public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
121
    {
122
        $this->replay[] = [
123
            'method' => __FUNCTION__,
124
            'args'  => func_get_args()
125
        ];
126
        $this->play(__FUNCTION__, func_get_args());
127
    }
128
129
    public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
130
    {
@@ 129-136 (lines=8) @@
126
        $this->play(__FUNCTION__, func_get_args());
127
    }
128
129
    public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
130
    {
131
        $this->replay[] = [
132
            'method' => __FUNCTION__,
133
            'args'  => func_get_args()
134
        ];
135
        $this->play(__FUNCTION__, func_get_args());
136
    }
137
138
    public function startTest(PHPUnit_Framework_Test $test)
139
    {