use of com.enonic.xp.node.CreateNodeParams in project xp by enonic.
the class CreateNodeParamsFactoryTest method child_order.
@Test
public void child_order() throws Exception {
final CreateNodeParams createNodeParams = createWithStringProperty(CHILD_ORDER, "_ts DESC");
assertEquals(ChildOrder.from("_ts DESC"), createNodeParams.getChildOrder());
}
Aggregations