Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php	(revision 22247)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_cancelOrderTest.php	(revision 22252)
@@ -37,5 +37,5 @@
   protected function setUp() {
     parent::setUp();
-
+    $this->setUpProductClass();
     $this->helper = new SC_Helper_Purchase_cancelOrderMock();
   }
@@ -55,5 +55,5 @@
     $this->actual['productClass'] = $this->objQuery->select(
       'stock', 'dtb_products_class',
-      'product_class_id = ?', array('1001')
+      'product_class_id in (?, ?)', array('1001', '1002')
     );
     $this->expected = array(
@@ -70,9 +70,8 @@
       ),
       'productClass' => array(
-        array('stock') => '105',
-        array('stock') => '51'
+        array('stock' => '105'),
+        array('stock' => '51')
       )
     );
-
     $this->verify();
   }
@@ -88,5 +87,5 @@
     $this->actual['productClass'] = $this->objQuery->select(
       'stock', 'dtb_products_class',
-      'product_class_id = ?', array('1001')
+      'product_class_id in (?, ?)', array('1001', '1002')
     );
     $this->expected = array(
@@ -103,6 +102,6 @@
       ),
       'productClass' => array(
-        array('stock') => '105',
-        array('stock') => '51'
+        array('stock' => '105'),
+        array('stock' => '51')
       )
     );
@@ -120,5 +119,5 @@
     $this->actual['productClass'] = $this->objQuery->select(
       'stock', 'dtb_products_class',
-      'product_class_id = ?', array('1001')
+      'product_class_id in (?, ?)', array('1001', '1002')
     );
     $this->expected = array(
@@ -136,6 +135,6 @@
       ),
       'productClass' => array(
-        array('stock') => '105',
-        array('stock') => '51'
+        array('stock' => '105'),
+        array('stock' => '51')
       )
     );
Index: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php	(revision 22206)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_completeOrderTest.php	(revision 22252)
@@ -93,4 +93,6 @@
     $this->verify('適切なfunctionが呼ばれている');
     $last_buy_date = $this->objQuery->get('last_buy_date', 'dtb_customer', 'customer_id = ?', '1002');
+    // TODO Jenkins上でテストに失敗するため、デバッグ用コードを挿入
+    var_dump($this->objQuery->select('*', 'dtb_customer', '', array()));
     $this->assertNotNull($last_buy_date, '最終購入日');
   }
