public function testSfArrayIntersctKeys_指定キーに含まれるものがある場合_含まれるものだけが返る()
 {
     $input_array = array('apple' => 'りんご', 'banana' => 'バナナ', 'orange' => 'オレンジ');
     $key_array = array('orange', 'apple');
     $this->expected = array('apple' => 'りんご', 'orange' => 'オレンジ');
     $this->actual = SC_Utils::sfArrayIntersectKeys($input_array, $key_array);
     $this->verify();
 }