Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php	(revision 22193)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php	(revision 22194)
@@ -56,5 +56,5 @@
     $this->actual = substr(sprintf('%o', fileperms($path)), -4);
 
-    $this->verify();
+    $this->verify('作成したディレクトリのパーミッション');
   }
 
@@ -66,5 +66,5 @@
     $this->actual = substr(sprintf('%o', fileperms($path)), -4);
 
-    $this->verify();
+    $this->verify('作成したディレクトリのパーミッション');
   }
 
Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php	(revision 22193)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_copyDirectoryTest.php	(revision 22194)
@@ -71,5 +71,5 @@
     Test_Utils::array_append($this->actual, Test_Utils::mapCols(SC_Helper_FileManager::sfGetFileList(self::$TMP_DIR . "/dst/dir20"), "file_name"));
     
-    $this->verify();
+    $this->verify('コピーされたファイル一覧');
   }
 
@@ -89,5 +89,5 @@
     $this->actual = array();
     
-    $this->verify();
+    $this->verify('コピーされたファイル一覧');
   }
 
@@ -116,5 +116,5 @@
     Test_Utils::array_append($this->actual, Test_Utils::mapCols(SC_Helper_FileManager::sfGetFileList(self::$TMP_DIR . "/dst/dir20"), "file_name"));
     
-    $this->verify();
+    $this->verify('コピー先のファイル一覧');
 
   }
@@ -151,5 +151,5 @@
     $this->actual[] = $read_result;
 
-    $this->verify();
+    $this->verify('コピー先のファイル一覧');
 
   }
Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php	(revision 22193)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_isInternalDomainTest.php	(revision 22194)
@@ -45,22 +45,25 @@
   /////////////////////////////////////////
   public function testsfIsInternalDomain_ドメインが一致する場合_trueが返る() {
+    $url = 'http://test.local/html/index.php';
     $this->expected = TRUE;
-    $this->actual = SC_Utils::sfIsInternalDomain('http://test.local/html/index.php');
+    $this->actual = SC_Utils::sfIsInternalDomain($url);
 
-    $this->verify();
+    $this->verify($url);
   }
 
   public function testsfIsInternalDomain_アンカーを含むURLの場合_trueが返る() {
+    $url = 'http://test.local/html/index.php#hoge';
     $this->expected = TRUE;
-    $this->actual = SC_Utils::sfIsInternalDomain('http://test.local/html/index.php#hoge');
+    $this->actual = SC_Utils::sfIsInternalDomain($url);
 
-    $this->verify();
+    $this->verify($url);
   }
 
   public function testsfIsInternalDomain_ドメインが一致しない場合_falseが返る() {
+    $url = 'http://test.local.jp/html/index.php';
     $this->expected = TRUE;
-    $this->actual = SC_Utils::sfIsInternalDomain('http://test.local.jp/html/index.php');
+    $this->actual = SC_Utils::sfIsInternalDomain($url);
 
-    $this->verify();
+    $this->verify($url);
   }
 
Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php	(revision 22194)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfUpDirNameTest.php	(revision 22194)
@@ -0,0 +1,58 @@
+<?php
+
+$HOME = realpath(dirname(__FILE__)) . "/../../../..";
+require_once($HOME . "/tests/class/Common_TestCase.php");
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+/**
+ * SC_Utils::sfUpDirName()のテストクラス.
+ *
+ *
+ * @author Hiroko Tamagawa
+ * @version $Id$
+ */
+class SC_Utils_sfUpDirNameTest extends Common_TestCase {
+
+
+  protected function setUp() {
+    // parent::setUp();
+  }
+
+  protected function tearDown() {
+    // parent::tearDown();
+  }
+
+  /////////////////////////////////////////
+  public function testSfUpDirName__1階層上のディレクトリ名が取得できる() {
+    $_SERVER['SCRIPT_NAME'] = 'dir1/dir2/updir/current';
+
+    $this->expected = 'updir';
+    $this->actual = SC_Utils::sfUpDirName();
+
+    $this->verify('ディレクトリ名');
+  }
+
+  //////////////////////////////////////////
+
+}
+
Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php	(revision 22193)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_clearCompliedTemplateTest.php	(revision 22194)
@@ -54,5 +54,5 @@
     Test_Utils::array_append($this->actual, MOBILE_COMPILE_REALDIR);
 
-    $this->verify();
+    $this->verify('コンパイル済みファイルの格納先の中身');
   }
 
Index: /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php
===================================================================
--- /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php	(revision 22194)
+++ /branches/version-2_12-dev/tests/class/util/SC_Utils/SC_Utils_sfGetCSVListTest.php	(revision 22194)
@@ -0,0 +1,67 @@
+<?php
+
+$HOME = realpath(dirname(__FILE__)) . "/../../../..";
+require_once($HOME . "/tests/class/Common_TestCase.php");
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+/**
+ * SC_Utils::sfGetCSVList()のテストクラス.
+ *
+ *
+ * @author Hiroko Tamagawa
+ * @version $Id$
+ */
+class SC_Utils_sfGetCSVListTest extends Common_TestCase {
+
+
+  protected function setUp() {
+    // parent::setUp();
+  }
+
+  protected function tearDown() {
+    // parent::tearDown();
+  }
+
+  /////////////////////////////////////////
+  public function testSfGetCSVList_配列が空の場合_falseが返る() {
+    
+    $this->expected = FALSE;
+    $this->actual = SC_Utils::sfGetCSVList(array());
+
+    $this->verify();
+  }
+
+  public function testSfGetCSVList_配列に要素が存在する場合_CSV形式に変換した文字列が返る() {
+    
+    $this->expected = '"1つ目の要素","カンマを,含む要素","3つ目の要素"' . "\r\n";
+    $this->actual = SC_Utils::sfGetCSVList(
+      array('1つ目の要素', 'カンマを,含む要素', '3つ目の要素')
+    );
+
+    $this->verify('CSVフォーマットの文字列');
+  }
+
+  //////////////////////////////////////////
+
+}
+
