import { MockCartShippingMethod } from '@daffodil/cart/driver/magento/testing'
class MockCartShippingMethod implements MagentoCartShippingMethod {
carrier_code: faker.random.word() = faker.random.word()
carrier_title: faker.random.words(2) = faker.random.words(2)
method_title: faker.random.words(2) = faker.random.words(2)
method_code: faker.random.word() = faker.random.word()
amount: MagentoMoney = this.money()
}