shapeType = port.draw(shape);
assertTrue(shapeType instanceof Square);
TestLogger.logger.debug("Square was drawn");
TestLogger.logger.debug("Sending Request to draw 3D Square");
ThreeDSquare threeDshape = new ThreeDSquare();
threeDshape.setXAxis(1);
threeDshape.setYAxis(1);
threeDshape.setLength(10);
threeDshape.setWidth(10);
threeDshape.setBredth(10);
shapeType = port.draw3D(threeDshape);
assertTrue(shapeType instanceof ThreeDSquare);
TestLogger.logger.debug("3D Square was drawn");
TestLogger.logger.debug("-------------------------------");
}