2

我对 TestNG 有疑问。当我在 Eclipse 中运行测试时一切正常,但是当我在 ANT 中运行测试时出现错误:

    TEST-RUN:
       [testng] [TestNG] [Error] 
       [testng] Error creating object factory: class SomeClassTest
       [testng] The tests failed.

在测试中我使用:

    @ObjectFactory
    public IObjectFactory getObjectFactory() {
        return new PowerMockObjectFactory();
    }
4

1 回答 1

0

您可能必须在 testng ant 任务中使用“objectFactory”属性,例如objectFactory="org.powermock.modules.testng.PowerMockObjectFactory". 有关更多信息,请参阅https://groups.google.com/forum/#!topic/testng-dev/h68SIRxbeNI。希望有帮助吗?

于 2014-05-23T11:37:56.150 回答