private static final String PLACE_NAME = "TESTPLACE";
private RboPlace place;
@Before
public void setUp() throws Exception {
RboPoint point = new DefaultPoint(5, 25);
place = new DefaultPlace(point);
place.getShape().add(new DefaultPoint(0, 0));
place.getShape().add(new DefaultPoint(0, 50));
place.getShape().add(new DefaultPoint(50, 50));
place.getShape().add(new DefaultPoint(50, 0));
((DefaultPlace) place).setName(PLACE_NAME);
}