コード例 #1
0
ファイル: message.php プロジェクト: ninjasilicon/core
	public function testSetCc() {
		$this->swiftMessage
			->expects($this->once())
			->method('setCc')
			->with(array('*****@*****.**'));
		$this->message->setCc(array('*****@*****.**'));
	}