$this->
getContainer()->
get(StateMachineRegistry::
class)->
transition( new Transition( 'order',
$orderId,
StateMachineTransitionActions::ACTION_COMPLETE,
'stateId',
),
$defaultContext );
$migration =
new Migration1625505190AddOrderTotalAmountToCustomerTable();
$migration->
update($this->
getContainer()->
get(Connection::
class));
$criteria =
new Criteria([$orderData[0
]['orderCustomer'
]['customer'
]['id'
]]);
/** @var CustomerEntity $customer */
$customer =
$this->
getContainer()->
get('customer.repository'
)->
search($criteria,
$defaultContext)->
first();
static::
assertEquals(10,
$customer->
getOrderTotalAmount());
}}