| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function register(AbstractTestCase $testCase) |
||
| 12 | { |
||
| 13 | $testCase->setTypePreference( |
||
| 14 | 'Magium\Magento\Actions\Checkout\PaymentMethods\PaymentMethodInterface', |
||
| 15 | 'Magium\Magento\Actions\Checkout\PaymentMethods\NoPaymentMethod' |
||
| 16 | ); |
||
| 17 | |||
| 18 | $testCase->setTypePreference( |
||
| 19 | 'Magium\Magento\Actions\Checkout\ShippingMethods\ShippingMethodInterface', |
||
| 20 | 'Magium\Magento\Actions\Checkout\ShippingMethods\FirstAvailable' |
||
| 21 | ); |
||
| 22 | |||
| 23 | $testCase->setTypePreference( |
||
| 24 | 'Magium\Themes\ThemeConfigurationInterface', |
||
| 25 | 'Magium\Magento\Themes\AbstractThemeConfiguration' |
||
| 26 | ); |
||
| 27 | |||
| 28 | $testCase->switchThemeConfiguration('Magium\Magento\Themes\Magento19\ThemeConfiguration'); |
||
| 29 | } |
||
| 30 | |||
| 31 | } |