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