| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | final class ProductTaxonsBuilderSpec extends ObjectBehavior |
||
| 23 | { |
||
| 24 | function let(ProductTaxonsMapperInterface $productTaxonsMapper): void |
||
| 25 | { |
||
| 26 | $this->beConstructedWith($productTaxonsMapper, 'taxons'); |
||
| 27 | } |
||
| 28 | |||
| 29 | function it_is_initializable(): void |
||
| 30 | { |
||
| 31 | $this->shouldHaveType(ProductTaxonsBuilder::class); |
||
| 32 | $this->shouldHaveType(AbstractBuilder::class); |
||
| 33 | } |
||
| 34 | |||
| 35 | function it_implements_property_builder_interface(): void |
||
| 36 | { |
||
| 37 | $this->shouldHaveType(PropertyBuilderInterface::class); |
||
| 38 | } |
||
| 39 | |||
| 40 | function it_consumes_event(TransformEvent $event): void |
||
| 41 | { |
||
| 42 | $this->consumeEvent($event); |
||
| 43 | } |
||
| 45 |