Code Duplication    Length = 11-11 lines in 2 locations

src/OroCRM/Bundle/SalesBundle/Tests/Functional/Fixture/LoadSalesBundleFixtures.php 2 locations

@@ 255-265 (lines=11) @@
252
    /**
253
     * @return Address
254
     */
255
    protected function getBillingAddress()
256
    {
257
        $address = new Address();
258
        $address->setCountry($this->getCounty());
259
        $address->setStreet('1215 Caldwell Road');
260
        $address->setCity('Rochester');
261
        $address->setPostalCode('14608');
262
        $address->setRegionText('Arizona1');
263
264
        return $address;
265
    }
266
267
    /**
268
     * @return Address
@@ 270-280 (lines=11) @@
267
    /**
268
     * @return Address
269
     */
270
    protected function getShippingAddress()
271
    {
272
        $address = new Address();
273
        $address->setCountry($this->getCounty());
274
        $address->setStreet('1215 Caldwell Road');
275
        $address->setCity('Rochester');
276
        $address->setPostalCode('14608');
277
        $address->setRegionText('Arizona1');
278
279
        return $address;
280
    }
281
282
    /**
283
     * @return Country