You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UserStory US1_Example {
As an "Insurance Employee"
I want to "doSomething"
so that "I am able to manage the customers data and offer them insurance contracts."
}
The text was updated successfully, but these errors were encountered:
Yes, I agree that it can be tricky sometimes without knowing the exact grammar behind the logic. I'm open to improvements here, as long as we can implement it with Xtext.
In your example, you do not separate the verb and the noun. If you just separate "do" and "Something", it compiles:
UserStory US1_Example {
As an "Insurance Employee"
I want to "do" "Something"
so that "I am able to manage the customers data and offer them insurance contracts."
}
This is actually something we also need for the OOAD transformations. To generate service operations and entities, we need this separation.
I cannot write:
The text was updated successfully, but these errors were encountered: