私は嘲笑しようとしCarbon::parse($date)->format("Y")
ていますが、どうすればいいのかわかりません。
これは私がこれまでに持っているものです:
public function testGetYear2014FromPost()
{
$mock = Mockery::mock("DateFormatter");
$mock->shouldReceive("parse")
->with("2014-02-08 16:23:33")
->once()
->andReturn($mock);
$mock->shouldReceive("format")
->with("Y")
->once()
->andReturn("2014");
$this->article->setDateFormatter($mock);
$this->assertEquals("2014", $this->article->getYear());
}