}
@Override@Test
public void testUpdateGeneralPathOutside() {
IRectangularShape model = getShape();
Path2D path;
PathIterator pi;
double[] coords = new double[6];
final double thickness = 3.;
final double height = 5.;
List<Double> xs = new ArrayList<>();
List<Double> ys = new ArrayList<>();
model.setPosition(-10, 20);
model.setWidth(100);
model.setThickness(thickness);
model.setHeight(height);
model.setBordersPosition(BorderPos.OUT);
view.update();
path = view.getPath();
pi = path.getPathIterator(null);
assertEquals(PathIterator.SEG_MOVETO, pi.currentSegment(coords));