public void pointFor_Bounds_atOffset() {
// given:
PointQuery pointQuery = pointLocator.pointFor(new BoundingBox(100, 100, 50, 50));
// when:
Point2D point = pointQuery.atOffset(0, 0).query();
// then:
assertThat(point, Matchers.equalTo(new Point2D(100, 100)));
}