We can customize the approval message as follows:
$this->assertEquals(true, false, 'should be equal');
I have a mock object:
$mockExecutionContext = $this->getMock('some interface');
$mockExecutionContext->expects($this->once())->method('someMethod');
How to configure the message displayed after confirmation?
source
share