| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class WizardTestCase extends TestCase |
||
| 12 | { |
||
| 13 | protected function assertWizardQuestion($question) |
||
| 14 | { |
||
| 15 | $this->assertInstanceOf(stdClass::class, $question); |
||
| 16 | $this->assertObjectHasAttribute('ask', $question); |
||
| 17 | $this->assertObjectHasAttribute('default', $question); |
||
| 18 | $this->assertIsString($question->ask); |
||
| 19 | $this->assertIsString($question->default); |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function assertConfirmQuestion($question) |
||
| 30 | } |
||
| 31 | } |