use of org.xwiki.test.ui.po.editor.ClassEditPage in project xwiki-platform by xwiki.
the class EditClassTest method addInvalidProperty.
@Test
public void addInvalidProperty() {
ClassEditPage cep = getUtil().editClass("Test", "EditObjectsTestClass");
cep.addPropertyWithoutWaiting("a<b c", "String");
cep.waitForNotificationErrorMessage("Failed: Property names must follow these naming rules:");
}
Aggregations