blob: 02e3d491df3f38a37e5b6b99f0cb949135b7a72c [file] [log] [blame]
package org.apache.taverna.workbench.ui.impl;
import org.apache.taverna.workbench.ui.Workbench;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.ContextHierarchy;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
public class WorkbenchLauncher {
@Autowired
Workbench workbench;
@Test
public void testName() throws Exception {
Thread.sleep(1000);
System.out.println(workbench.toString());
}
}