public static void main(String[] args) {
TestNG testng = new TestNG();
testng.setTestClasses(new Class[] { MultithreadedInvocationTest.class });
TestListenerAdapter tla = new TestListenerAdapter();
testng.addListener(tla);
testng.run();
}
@Test(invocationCount = 100, threadPoolSize = 20)
public void invokeQueryPushMode() throws XQueryException, XMLStreamException, XPathException,
SAXException, IOException {