public function testSfGetTimestamp_最終時刻フラグがONの場合_時刻が深夜のものになる()
 {
     $year = '1999';
     $month = '09';
     $day = '23';
     $this->expected = '1999-09-23 23:59:59';
     $this->actual = SC_Utils::sfGetTimestamp($year, $month, $day, true);
     $this->verify();
 }