Skip to content

Commit

Permalink
Merge pull request #9 from goodjun/dev
Browse files Browse the repository at this point in the history
feat: update test case
  • Loading branch information
goodjun authored Sep 22, 2020
2 parents 60913a9 + 4aeb9b6 commit 5ba4b50
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/LUIS/Tests/FeatureTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ public function tearDown()
unset($this->luisClient);
}

public function testGetApps()
{
$apps = $this->luisClient->getApps();
$this->assertNotNull($apps);
}

public function testGetCultures()
{
$cultures = $this->luisClient->getCultures();
$this->assertNotNull($cultures);
}

public function testCreateUpdateDeleteApp()
{
$app = (new App())->setName('test')->setDescription('newdescription');
Expand Down

0 comments on commit 5ba4b50

Please sign in to comment.