//validate
Assert.assertEquals(HorizontalRelative.PARAGRAPH, frameStyleHandler.getHorizontalRelative());
//
HorizontalRelative hor = HorizontalRelative.enumValueOf("");
Assert.assertEquals("page", hor.toString());
HorizontalRelative hor1 = HorizontalRelative.enumValueOf("paragraph");
Assert.assertEquals("paragraph", hor1.toString());
HorizontalRelative hor2 = HorizontalRelative.enumValueOf("aaa");
Assert.assertEquals("page", hor2.toString());
//save
//textDoc.save(ResourceUtilities.newTestOutputFile("textsample.odt"));
} catch (Exception e) {