Exemplo n.º 1
0
 /**
  * Tests the {@link PHP_Depend_Code_File#getLoc()} method.
  *
  * @return void
  */
 public function testGetLoc()
 {
     $file = new PHP_Depend_Code_File(dirname(__FILE__) . '/../_code/mixed_code.php');
     $this->assertType('array', $file->getLoc());
     $this->assertEquals(62, count($file->getLoc()));
 }