use of com.gitblit.IUserService in project gitblit by gitblit.
the class UserServiceTest method testConfigUserService.
@Test
public void testConfigUserService() throws IOException {
File file = new File("us-test.conf");
file.delete();
IUserService service = new ConfigUserService(file);
testUsers(service);
testTeams(service);
file.delete();
}
Aggregations