public function testSfDbDatetoTime_時刻にマイクロ秒が含まれていない場合_そのまま変換できる()
 {
     $this->expected = mktime(10, 20, 30, 10, 31, 2012);
     $this->actual = SC_Utils::sfDbDatetoTime('2012-10-31 10:20:30');
     $this->verify();
 }