specification1 = new DummyViewSpecification();
specification1.setupCreatedViewsSize(new Size(200, 100));
specification2 = new DummyViewSpecification();
specification2.setupCreatedViewsSize(new Size(150, 120));
content = new DummyContent();
view = new PanelView(content, new DummyViewSpecification());
view.setInitialViewSpecification(specification1);
view.getSubviews();
view.addView(new DummyContent(), specification2, Position.East);
}