Assert.assertEquals("should be placed on top of original, but slightly offset", new Location(0, 0), location);
}
@Test
public void viewLargerThanWorkspaceAndExisitingViewInCorner() throws Exception {
existingView.setLocation(new Location(200, 300));
existingView.setLocation(new Location(0, 0));
newView.setupRequiredSize(new Size(1100, 900));
final Location location = strategy.determinePlacement(workspace, existingView, newView);
Assert.assertEquals("should be placed on top of original, but slightly offset", new Location(0, 0), location);
}