1 | <?php |
||
9 | class EventSpec extends ObjectBehavior |
||
10 | { |
||
11 | function let() |
||
12 | { |
||
13 | $this->beAnInstanceOf(StubEvent::class); |
||
14 | } |
||
15 | |||
16 | function it_is_initializable() |
||
17 | { |
||
18 | $this->shouldHaveType(AbstractEvent::class); |
||
19 | } |
||
20 | |||
21 | function it_propagation_can_be_stopped() |
||
22 | { |
||
23 | $this->isPropagationStopped()->shouldBe(false); |
||
24 | $this->stopPropagation(); |
||
25 | $this->isPropagationStopped()->shouldBe(true); |
||
26 | } |
||
27 | } |
||
28 |