Beispiel #1
0
 /**
  *
  * @param Vertices $verticesTwo
  * @param Vertices $verticesEmpty
  * @depends testTwo
  * @depends testEmpty
  */
 public function testTwoIntersectionEmpty(Vertices $verticesTwo, Vertices $verticesEmpty)
 {
     $verticesIntersection = $verticesTwo->getVerticesIntersection($verticesEmpty);
     $this->assertCount(0, $verticesIntersection);
 }