*
* @throws Exception
*/
@Test
public void testConstructorFound() throws Exception {
PublicConstructorWithDependencyDemo tested = createPartialMock(PublicConstructorWithDependencyDemo.class,
new String[] { "aMethod" }, serviceMock);
assertSame(serviceMock, tested.getService());
}