如何使用带有类的构造函数来模拟对象?

时间:2011-02-10 16:03:28

标签: java unit-testing junit mockito powermock

这是测试:

import static junit.framework.Assert.assertTrue;
import static org.powermock.api.mockito.PowerMockito.mock;
import static org.powermock.api.mockito.PowerMockito.whenNew;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
@PrepareForTest( {ClassUnderTesting.class} )
public class ClassUnderTestingTest {

    @Test
    public void shouldInitializeMocks() throws Exception {
        CollaboratorToBeMocked mockedCollaborator = mock(CollaboratorToBeMocked.class);

            suppress(constructor(CollaboratorToBeMocked.class, InjectedIntoCollaborator.class));

        whenNew(CollaboratorToBeMocked.class)
            .withArguments(InjectedAsTypeIntoCollaborator.class)
            .thenReturn(mockedCollaborator);

        new ClassUnderTesting().methodUnderTesting();

        assertTrue(true);
    }
}

这些是类:

public class ClassUnderTesting {

    public void methodUnderTesting() {
        new CollaboratorToBeMocked(InjectedAsTypeIntoCollaborator.class);
    }

}

public class CollaboratorToBeMocked {

    public CollaboratorToBeMocked(Class<InjectedAsTypeIntoCollaborator> clazz) {
    }

    public CollaboratorToBeMocked(InjectedIntoCollaborator someCollaborator) {
    }

    public CollaboratorToBeMocked() {
    }

}

public class InjectedAsTypeIntoCollaborator {

}

public class InjectedIntoCollaborator {

}

这是错误:

org.powermock.reflect.exceptions.TooManyConstructorsFoundException: Several matching constructors found, please specify the argument parameter types so that PowerMock can determine which method you're refering to.
Matching constructors in class CollaboratorToBeMocked were:
CollaboratorToBeMocked( InjectedIntoCollaborator.class )
CollaboratorToBeMocked( java.lang.Class.class )

问题:如何让PowerMock找出要查找的构造函数?

有问题的行suppress。这就是错误的来源。

2 个答案:

答案 0 :(得分:17)

或许你的问题为时已晚。我今天遇到了它,并在以下网址找到了解决方案。基本上,您需要指定您的参数类型,如。

whenNew(MimeMessage.class).**withParameterTypes(MyParameterType.class)**.withArguments(isA(MyParameter.class)).thenReturn(mimeMessageMock); 

http://groups.google.com/group/powermock/msg/347f6ef1fb34d946?pli=1

希望它可以帮到你。 :)

答案 1 :(得分:2)

在你写完问题之前我不知道PowerMock,但做了一些阅读并在他们的文档中找到了这个。我仍然不确定这是否对你有所帮助:

  

如果超级班有几个   施工人员可以说出来   PowerMock只能压制特定的   一。假设你有一个名为的课程   ClassWithSeveralConstructors有   一个带String的构造函数   和另一个构造函数   int作为参数而你只想要   压制String构造函数。   你可以使用   suppress(constructor(ClassWithSeveralConstructors.class, String.class));   方法

发现于http://code.google.com/p/powermock/wiki/SuppressUnwantedBehavior

这不是你想要的吗?

编辑:现在我明白了,你已经尝试过压制了。但你确定你有抑制电话吗?是不是constructor()的第一个参数应该是你想要压制构造函数的类?