diff options
author | ChuanyuChen <chenchuanyu@huawei.com> | 2022-07-30 09:39:36 +0800 |
---|---|---|
committer | ChuanyuChen <chenchuanyu@huawei.com> | 2022-08-03 10:25:50 +0800 |
commit | c63412acfab7c50803bdd0dcf848b3a91b3f565f (patch) | |
tree | 6db3531941ba930e0ad5a91e8bf87b6ad4c48781 /intentanalysis/src/test/resources/intentdb-test-data.sql | |
parent | 0c41af52f3f453219a0240cf54ea321829a49c0e (diff) |
Add unit test for intent analysis
Add unit test for intent analysis
Issue-ID: USECASEUI-692
Signed-off-by: ChuanyuChen <chenchuanyu@huawei.com>
Change-Id: If7c8a1ca56c1e8cc07e91729b3d2e38ddb2c855b
Diffstat (limited to 'intentanalysis/src/test/resources/intentdb-test-data.sql')
-rw-r--r-- | intentanalysis/src/test/resources/intentdb-test-data.sql | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/intentanalysis/src/test/resources/intentdb-test-data.sql b/intentanalysis/src/test/resources/intentdb-test-data.sql new file mode 100644 index 0000000..14cbefc --- /dev/null +++ b/intentanalysis/src/test/resources/intentdb-test-data.sql @@ -0,0 +1,22 @@ +/* + Navicat Premium Data Transfer + + Source Server : 1 + Source Server Type : PostgreSQL + Source Server Version : 100011 + Source Host : localhost:5432 + Source Catalog : exampledb + Source Schema : mec + + Target Server Type : PostgreSQL + Target Server Version : 100011 + File Encoding : 65001 + + Date: 26/07/2022 10:12:23 +*/ + +-- ---------------------------- +MERGE INTO intent (intent_id, intent_name)KEY(intent_id)values ('1234','test-intent'); + + +MERGE INTO expectation (expectation_id, expectation_name, target_moi, intent_id)KEY(expectation_id)values ('2234','test-expectation',null, '1234'); |