17 $this->_messageMock = $this->createPartialMock(
18 \
Magento\Framework\Mail\Message::class,
19 [
'setBody',
'setMessageType']
25 $this->_messageMock->expects($this->once())
26 ->method(
'setMessageType')
29 $this->_messageMock->expects($this->once())
33 $this->_messageMock->setBodyHtml(
'body');
38 $this->_messageMock->expects($this->once())
39 ->method(
'setMessageType')
42 $this->_messageMock->expects($this->once())
46 $this->_messageMock->setBodyText(
'body');