Example #1
0
 /**
  * @test
  * @depends points_added_can_be_retrieved_from_plane
  */
 public function points_that_doesnt_exist_on_plane_cannot_be_retrieved()
 {
     $plane = new Plane(10, 10);
     $this->assertFalse($plane->hasPoint(new Point(2, 2)), 'Plane should not have a plane which hasn\'t been added.');
 }