assertEquals("%G %i", threadFactory.threadNamePattern());
assertEquals(5, threadFactory.initialPriority());
BlockingThreadPoolExecutorFactory threadPool = cm.getCacheManagerConfiguration().transport().transportThreadPool().threadPoolFactory();
assertEquals(6, threadPool.coreThreads()); // overriden by TestCacheManagerFactory
assertEquals(6, threadPool.maxThreads()); // overriden by TestCacheManagerFactory
assertEquals(10000, threadPool.queueLength()); // overriden by TestCacheManagerFactory
assertEquals(30000, threadPool.keepAlive()); // overriden by TestCacheManagerFactory
threadFactory = cm.getCacheManagerConfiguration().listenerThreadPool().threadFactory();
assertEquals("infinispan", threadFactory.threadGroup().getName());
assertEquals("%G %i", threadFactory.threadNamePattern());