public void getAllServiceProducers() throws Exception {
final String expectedName = "mock name";
final int expectedId = 1;
final Set<ServiceArtifact> serviceArtifacts = new HashSet<ServiceArtifact>();
serviceArtifacts.add(new ServiceArtifact(expectedId, expectedName));
expect(providerDaoMock.getAllServiceProducers()).andReturn(serviceArtifacts);
replayAll();