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