@Deprecated
public class WorkQueueSingleConfigTest {
@Test
public void testReadConfig() throws IOException, ConfigurationException {
WorkQueueManager wqm = new WorkQueueManagerImpl();
Assert.assertNull(wqm.getNamedWorkQueue("default"));
ManagedWorkQueueList workQueueList = new ManagedWorkQueueList();
WorkQueueSingleConfig wqlSingleConfig =
new WorkQueueSingleConfig(workQueueList);
InputStream is = this.getClass().getResourceAsStream("org.apache.cxf.workqueues.cfg");
Properties properties = new Properties();