8000 [Workflow] Add missing test for workflow dump description by alexislefebvre · Pull Request #32419 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Workflow] Add missing test for workflow dump description #32419

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

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

8000 Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add missing test for workflow dump description
  • Loading branch information
alexislefebvre authored and fabpot committed Jul 8, 2019
commit 0c326d0b5533ef871169abea57498a876daa3625
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ private function createSimpleWorkflowDefinition()
$placesMetadata = [];
$placesMetadata['c'] = [
'bg_color' => 'DeepSkyBlue',
'description' => 'My custom place description',
];

$transitionsMetadata = new \SplObjectStorage();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ skinparam agent {
}
state "a" <<initial>>
state "b" <<marked>>
state "c" <<DeepSkyBlue>>
state "c" <<DeepSkyBlue>> as c
c : My custom place description
agent "t1"
agent "t2"
"a" -[#Purple]-> "t1": "<font color=Grey>My custom transition label 2</font>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ skinparam agent {
}
state "a" <<initial>>
state "b"
state "c" <<DeepSkyBlue>>
state "c" <<DeepSkyBlue>> as c
c : My custom place description
agent "t1"
agent "t2"
"a" -[#Purple]-> "t1": "<font color=Grey>My custom transition label 2</font>"
Expand Down
0