use of org.hudsonci.service.internal.QueueServiceImpl in project hudson-2.x by hudson.
the class QueueServiceImplTest method setUp.
@Before
public void setUp() throws Exception {
// static methods
mockStatic(Hudson.class);
// final and native
hudson = mock(Hudson.class);
MockitoAnnotations.initMocks(this);
queueService = new QueueServiceImpl(security);
queueService.setHudson(hudson);
}
Aggregations