Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-ka committed Aug 8, 2024
1 parent 5e66482 commit 38219ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Domain Insurance_Application {
Entity Claim {
Date date
Double amountClaimed
String description
String desc
- Agent agent
}
Entity Policy {
Expand Down Expand Up @@ -43,7 +43,7 @@ Domain Insurance_Application {
UseCase Get_paid_for_car_accident { // title
actor "Claimant" // primary actor
interactions
"submit" a "Claim" with its "date", "amountClaimed", "description" for a "Policy", // step 1: claimant submits claim
"submit" a "Claim" with its "date", "amountClaimed", "desc" for a "Policy", // step 1: claimant submits claim
"verifyExistanceOf" "Policy" with its "startDate", "endDate" for a "Contract", // step 2: insurance company verifies that valid policy exists
"assign" an "Agent" with its "personalID", "firstName", "lastName" for "Claim", // step 3: agent is assigned to claim
"verify" "Policy" for a "Contract", // step 4: agent verifies all details are within policy guidelines
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BoundedContext ClaimsManagement implements ClaimsManagement {
Entity Claim {
Date date
Double amountClaimed
String description
String desc
String claimId key
- Agent agent
}
Expand Down Expand Up @@ -59,7 +59,7 @@ Domain Insurance_Application {
Entity Claim {
Date date
Double amountClaimed
String description
String desc
- Agent agent
}
Entity Policy {
Expand Down Expand Up @@ -100,7 +100,7 @@ Domain Insurance_Application {
UseCase Get_paid_for_car_accident { // title
actor "Claimant" // primary actor
interactions
"submit" a "Claim" with its "date", "amountClaimed", "description" for a "Policy", // step 1: claimant submits claim
"submit" a "Claim" with its "date", "amountClaimed", "desc" for a "Policy", // step 1: claimant submits claim
"verifyExistanceOf" "Policy" with its "startDate", "endDate" for a "Contract", // step 2: insurance company verifies that valid policy exists
"assign" an "Agent" with its "personalID", "firstName", "lastName" for "Claim", // step 3: agent is assigned to claim
"verify" "Policy" for a "Contract", // step 4: agent verifies all details are within policy guidelines
Expand Down

0 comments on commit 38219ea

Please sign in to comment.