'aces', 'label' => 'Aces Workflow', 'type' => 'predefined_states_workflow_test_type', 'transitions' => [ 'bet' => [ 'label' => 'Bet', 'from' => [ 'pay_blinds', ], 'to' => 'bet', ], 'raise' => [ 'label' => 'Raise', 'from' => [ 'pay_blinds', ], 'to' => 'raise', ], ], ]); $workflow->save(); // No states configuration is stored for this workflow. $configuration = $workflow->getTypePlugin()->getConfiguration(); $this->assertFalse(isset($configuration['states'])); } }