Code Duplication    Length = 8-8 lines in 2 locations

test/Shop/ProductTest.php 2 locations

@@ 181-188 (lines=8) @@
178
    }
179
180
181
    public function testGetSku()
182
    {
183
        $cateId = '536891949';
184
185
        $product = new Product($this->http);
186
        $response = $product->getSku($cateId);
187
        $this->assertTrue(is_array($response));
188
    }
189
190
    public function testGetProperty()
191
    {
@@ 190-197 (lines=8) @@
187
        $this->assertTrue(is_array($response));
188
    }
189
190
    public function testGetProperty()
191
    {
192
        $cateId = '536891949';
193
194
        $product = new Product($this->http);
195
        $response = $product->getProperty($cateId);
196
        $this->assertTrue(is_array($response));
197
    }
198
199
    /**
200
     * @depends testCreate