Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php	(revision 22169)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php	(revision 22201)
@@ -476,5 +476,7 @@
        'price' => 3000,
        'quantity' => 10,
-       'point_rate' => 5
+       'point_rate' => 5,
+       'tax_rate' => 5,
+       'tax_rule' => 0
      ),
      array(
@@ -489,5 +491,7 @@
        'price' => 4000,
        'quantity' => 15,
-       'point_rate' => 6
+       'point_rate' => 6,
+       'tax_rate' => 3,
+       'tax_rule' => 1
      ),
      array(
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php	(revision 22139)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_registerShippingTest.php	(revision 22201)
@@ -6,5 +6,5 @@
  *
  */
-class SC_Helper_Purchase_registerShippingTempTest extends SC_Helper_Purchase_TestBase {
+class SC_Helper_Purchase_registerShippingTest extends SC_Helper_Purchase_TestBase {
 
   protected function setUp() {
@@ -30,5 +30,5 @@
     );
  
-    $this->expected['count'] = '3'; // 1件増える
+    $this->expected['count'] = '4'; // 1件増える
     $this->expected['content'] = array(
         'order_id' => '10',
@@ -67,5 +67,5 @@
     );
 
-    $this->expected['count'] = '2'; // 件数が変わらない
+    $this->expected['count'] = '3'; // 件数が変わらない
     $this->expected['content'] = array(
         'order_id' => '2',
@@ -104,5 +104,5 @@
     );
 
-    $this->expected['count'] = '2';
+    $this->expected['count'] = '3';
     $this->expected['content'] = array(
         'order_id' => '2',
@@ -141,5 +141,5 @@
     );
 
-    $this->expected['count'] = '2'; // 件数が変わらない
+    $this->expected['count'] = '3'; // 件数が変わらない
     $this->expected['content'] = array(
         'order_id' => '2',
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php	(revision 22141)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getOrderDetailTest.php	(revision 22201)
@@ -74,5 +74,7 @@
          'payment_date' => '2032-12-31 01:20:30',
          'enable' => '0',
-         'effective' => '1'
+         'effective' => '1',
+         'tax_rate' => '5',
+         'tax_rule' => '0'
        ),
        array(
@@ -90,5 +92,7 @@
          'payment_date' => '2032-12-31 01:20:30',
          'enable' => '1',
-         'effective' => '1'
+         'effective' => '1',
+         'tax_rate' => '3',
+         'tax_rule' => '1'
        )
     );
@@ -116,5 +120,7 @@
          // 'payment_date' => '2032-12-31 01:20:30',
          'enable' => '0',
-         'effective' => '1'
+         'effective' => '1',
+         'tax_rate' => '5',
+         'tax_rule' => '0'
        ),
        array(
@@ -132,5 +138,7 @@
          // 'payment_date' => '2032-12-31 01:20:30',
          'enable' => '1',
-         'effective' => '1'
+         'effective' => '1',
+         'tax_rate' => '3',
+         'tax_rule' => '1'
        )
     );
