getProcedureCount() 공개 메소드

Calculates the total number of procedures this operation requires.
public getProcedureCount ( ) : integer
리턴 integer
 public function testProcedureCountBothEyes()
 {
     $op = new Element_OphTrOperationbooking_Operation();
     $op->procedures = array(new Procedure(), new Procedure());
     $op->eye_id = Eye::BOTH;
     $this->assertEquals($op->getProcedureCount(), 4);
 }