Code Duplication    Length = 9-9 lines in 2 locations

tests/performance/GigyaTest.php 2 locations

@@ 124-132 (lines=9) @@
121
        );
122
    }
123
124
    public function testSingleCall()
125
    {
126
        $this->createBasicHandler();
127
        $this->startBenchmark();
128
129
        $this->gigya->accounts()->getAccountInfo(['uid' => 'some_uid']);
130
131
        $this->printBenchmark(__METHOD__, 1);
132
    }
133
134
    public function testSingleChildCall()
135
    {
@@ 186-194 (lines=9) @@
183
        );
184
    }
185
186
    public function testSingleCallAgain()
187
    {
188
        $this->createBasicHandler();
189
        $this->startBenchmark();
190
191
        $this->gigya->accounts()->getAccountInfo(['uid' => 'some_uid']);
192
193
        $this->printBenchmark(__METHOD__, 1);
194
    }
195
}
196