PolymorphicShapeService service = new PolymorphicShapeService();
PolymorphicShapePortType port = service.getPolymorphicShapePort();
Shape shapeType;
TestLogger.logger.debug("Sending Request to draw Square");
Square shape = new Square();
shape.setXAxis(1);
shape.setYAxis(1);
shape.setLength(10);
shapeType = port.draw(shape);
assertTrue(shapeType instanceof Square);
TestLogger.logger.debug("Square was drawn");
TestLogger.logger.debug("Sending Request to draw 3D Square");