From 4aeb9b686e415ba31fb957da3f581be600f00302 Mon Sep 17 00:00:00 2001 From: goodjun Date: Mon, 21 Sep 2020 18:38:23 -0700 Subject: [PATCH] feat: update test case --- tests/LUIS/Tests/FeatureTest.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/LUIS/Tests/FeatureTest.php b/tests/LUIS/Tests/FeatureTest.php index bfd2f2b..37cdd0d 100644 --- a/tests/LUIS/Tests/FeatureTest.php +++ b/tests/LUIS/Tests/FeatureTest.php @@ -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');