| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | function it_can_be_created() |
||
| 23 | { |
||
| 24 | $this->beConstructedWith('project-slug', 'organization-slug', 'user-id'); |
||
| 25 | $this->shouldHaveType(ProjectOfSlugQuery::class); |
||
| 26 | $this->userId()->shouldReturn('user-id'); |
||
| 27 | $this->slug()->shouldReturn('project-slug'); |
||
| 28 | $this->organizationSlug()->shouldReturn('organization-slug'); |
||
| 29 | } |
||
| 30 | } |
||
| 31 |