mockStatic(Hudson.class);
hudson = PowerMockito.mock(Hudson.class);
PowerMockito.mockStatic(JobUuid.class);
MockitoAnnotations.initMocks(this);
this.projectService = new ProjectServiceImpl(securityService);
this.projectService.setHudson(hudson);
assertThat(getInst(), notNullValue());
}