public void testNewSlideTitle_subtitle() {
try {
//Creates an empty presentation document.
doc = PresentationDocument.newPresentationDocument();
TableContainer container = doc.newSlide(0, "testlayout", Slide.SlideLayout.TITLE_SUBTITLE);
Table table = container.addTable();
table.setTableName("SlideTable");
String slideTableCellValue = " Cell[0,0]";
table.getCellByPosition(0, 0).setStringValue(slideTableCellValue);
String slideTableCellValue1 = " Cell[0,1]";
table.getCellByPosition(0, 1).setStringValue(slideTableCellValue1);