Skip to content

Commit

Permalink
Adding test configs for functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rajagopal28 committed Jul 31, 2021
1 parent fc65cc3 commit f2ad78e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
File renamed without changes.
14 changes: 14 additions & 0 deletions test/test_configs/driver-age-factor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[
{
"age":16,
"is-eligible":false,
"factor":0,
"label":"Decline"
},
{
"age":26,
"is-eligible":true,
"factor":1.000,
"label":""
}
]
14 changes: 14 additions & 0 deletions test/test_configs/insurance-group-factor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[
{
"group":"1-8",
"is-eligible":true,
"factor":1.000,
"label":""
},
{
"group":"8",
"is-eligible":false,
"factor":0,
"label":"Decline"
}
]
10 changes: 10 additions & 0 deletions test/test_configs/licence-validity-factor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"length":"0-6",
"factor":1.100
},
{
"length":"6",
"factor":0.950
}
]

0 comments on commit f2ad78e

Please sign in to comment.