Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function testCreateWithIntent(): void |
||
20 | { |
||
21 | $json = file_get_contents(__DIR__ . '/../../../Intent/Data/intent_without_resolutions.json'); |
||
22 | $intent = Intent::fromAmazonRequest(json_decode($json, true)); |
||
23 | |||
24 | $elicitSlotDirective = ElicitSlotDirective::create('', $intent); |
||
25 | $this->assertSame('Dialog.ElicitSlot', $elicitSlotDirective->type); |
||
26 | } |
||
28 |