| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function providedPartIsReturned(string $attachmentName = null) |
||
| 41 | { |
||
| 42 | $part = new Part(); |
||
| 43 | |||
| 44 | $result = $this->parser->parse($part, $attachmentName); |
||
| 45 | |||
| 46 | $this->assertSame($part, $result); |
||
| 47 | $this->assertEquals($part->id, $attachmentName); |
||
| 48 | $this->assertEquals($part->filename, $attachmentName); |
||
| 49 | } |
||
| 50 | |||
| 59 |