import { MockOrderShipment } from '@daffodil/order/testing'
class MockOrderShipment implements DaffOrderShipment {
tracking: DaffOrderShipmentTracking[] = this.createTracking()
items: DaffOrderShipmentItem[] = this.createItems()
carrier: faker.random.word() = faker.random.word()
carrier_title: faker.random.word() = faker.random.word()
code: faker.random.word() = faker.random.word()
method: faker.random.word() = faker.random.word()
method_description: faker.random.word() = faker.random.word()
}