-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(JsonBuilder): add new properties for link events #2895
Conversation
e6d431a
to
4e2d032
Compare
4e2d032
to
ad246a9
Compare
3698f33
to
64aee24
Compare
- source: for Link Intermediate Catch Event - target: for Link Intermediate Throw Event
64aee24
to
7f88cbc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ℹ️ I didn't have much time to review this report, so I've skimmed it.
|
||
export type BuildEventsParameter = BuildOtherEventParameter | BuildStartEventParameter | BuildBoundaryEventParameter; | ||
export type BuildEventParameter = BuildNotBoundaryEventParameter | BuildBoundaryEventParameter; | ||
export type BuildNotBoundaryEventParameter = BuildIntermediateCatchEventParameter | BuildIntermediateThrowEventParameter | BuildEndEventParameter | BuildStartEventParameter; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: can we found a better name than BuildNotBoundaryEventParameter
that doesn't use a negation? Does it means "all kind of events but the boundary events"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, indeed, it's all events excepted boundary. I didn't find better name, and the old (BuildOtherEventParameter
) wasn't better.
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Overview
Update the test helper
JsonBuilder
to set the properties:source
: for Link event definition of Intermediate Catch Eventtarget
: for Link event definition of Intermediate Throw EventAnd rename some existing types.
Covers #2906