| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 2 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testValidateGoodName() |
||
| 16 | { |
||
| 17 | // arrange |
||
| 18 | $validationHelper = new RequestValidationHelper(new MockBanHelper(), $this->request, $this->request->getEmail()); |
||
| 19 | |||
| 20 | // act |
||
| 21 | $result = $validationHelper->validateName(); |
||
| 22 | |||
| 23 | // assert |
||
| 24 | $this->assertEmpty($result); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |