HistoryTimeToLiveParser requires a non null config to be created

In the process of upgrading to v7.23.0-ee and am running into the following in various DMN unit tests.

org.camunda.bpm.dmn.engine.impl.transform.DmnTransformException: DMN-02004 Error while transforming decisions: HistoryTimeToLiveParser requires a non null config to be created

Ran into the same on the BPMN side but addressed it by adding

<property name="enforceHistoryTimeToLive" value="false" />

to the process engine config in camunda.cfg.xml.

Have been unable to figure out, or find an example of, how to do this with a DmnEngine.

Our tests basically execute

DmnDecisionTableResult results = DmnEngine.evaluateDecisionTable(decision, variables);

Thanks much!