In the sequence diagram, if in view of keeping it high level, instead of describing a few functions calls that I invoke from a component, I use a function name that describes what I want to do. But that function actually does not exist. Will that be OK?
E.g.
instead of using the two actual method names (doA and doB are actual methods)
X Y
| doA |
| ------> |
| doB |
| ------> |
Can I just use a fake method name (doC is not an actual method in my code) in place of the above?
In the sequence diagram, if in view of keeping it high level, instead of describing a few functions calls that I invoke from a component, I use a function name that describes what I want to do. But that function actually does not exist. Will that be OK? E.g. instead of using the two actual method names (doA and doB are actual methods)
Can I just use a fake method name (doC is not an actual method in my code) in place of the above?