/**
  * Fonction permettant de tester la classe
  *
  * @return array
  */
 function test()
 {
     $tabTest = parent::test();
     /**
      * Test avec un healthCareFacility incorrect
      */
     $healt = new CCDAPOCD_MT000040_HealthCareFacility();
     $healt->setTypeId();
     $this->setHealthCareFacility($healt);
     $tabTest[] = $this->sample("Test avec un healthCareFacility correct", "Document valide");
     /*-------------------------------------------------------------------------------------*/
     /**
      * Test avec un typeCode correct
      */
     $this->setTypeCode();
     $tabTest[] = $this->sample("Test avec un typeCode correct", "Document valide");
     /*-------------------------------------------------------------------------------------*/
     return $tabTest;
 }