コード例 #1
0
 /**
  * try to get a customer
  */
 public function testSearchCustomers()
 {
     $customerController = Sales_Controller_Customer::getInstance();
     $i = 0;
     while ($i < 104) {
         $customerController->create(new Sales_Model_Customer(array('name' => Tinebase_Record_Abstract::generateUID())));
         $i++;
     }
     $result = $this->_instance->searchCustomers(array(), array('limit' => 50));
     $this->assertEquals(50, count($result['results']));
     $this->assertGreaterThanOrEqual(104, $result['totalcount']);
 }