use of org.hudsonci.service.SecurityService in project hudson-2.x by hudson.
the class SystemServiceImplTest method setUp.
@Before
public void setUp() throws Exception {
mockStatic(Hudson.class);
hudson = mock(Hudson.class);
SecurityService security = mock(SecurityService.class);
system = new SystemServiceImpl(security);
system.setHudson(hudson);
}
Aggregations