为什么说“注释类型Parameterized.Parameters的属性名称未定义”

时间:2019-01-29 16:19:41

标签: junit openssl parameterized-tests

我写了如下代码: 但是在编译时会抛出编译错误,提示

  

“注释类型的属性'名称'未定义   Parameterized.Parameters”

@RunWith(Parameterized.class)
public class TrustStandaloneTestSimple {

    @BeforeClass
    public static void setup() {
    }

    @Parameters(name = "propertyFileName")
    public static Collection<String[]> getParameters(){ 

        return Arrays.asList(new String [][]{{"trust.keystore.simple1.properties"},
                                            {"trust.keystore.simple2.properties"}});
    }

1 个答案:

答案 0 :(得分:0)

如果您的进口商品与其他商品不同,则可能会引起问题

import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;

请检查您的进口商品