Github user jbertram commented on the issue:
https://github.com/apache/activemq-artemis/pull/1806
@jostbg, you can extend StompTestBase and override the createServer()
method. Look at the implementation of createServer() in StompTestBase to get
an idea how to create/configure the server. The method
`org.apache.activemq.artemis.core.server.ActiveMQServers#newActiveMQServer(org.apache.activemq.artemis.core.config.Configuration,
javax.management.MBeanServer,
org.apache.activemq.artemis.spi.core.security.ActiveMQSecurityManager,
boolean)` will likely come in handy for you when creating your server.
---