Пример #1
0
	public function testGetReplyTo() {
		$this->swiftMessage
			->expects($this->once())
			->method('getReplyTo')
			->will($this->returnValue(['*****@*****.**']));

		$this->assertSame(['*****@*****.**'], $this->message->getReplyTo());
	}