我在 Eclipse 中有一个项目,它是一个WebService项目 REST API,我还在其中添加了另一个项目,Configure Build path -> Add Project并且在我的 API 方法中添加了另一个项目,我正在调用TestNGCreator类,请看下面。基本上这个项目使用 java 中的 jersey 框架创建 REST API,当我调用任何特定方法时,即执行它将调用另一个驻留在另一个项目中的类,我在这个项目的构建路径中添加了项目,我的其他方法工作正常但是当我我从不同的项目调用方法我有这个错误。我是否需要在 POM.xml 或其他地方声明一些我正在使用此类和此方法的地方我需要通过调用它来运行自动化TestNGCreator.main(null); 我的另一个项目是 javaTestNGCreator类中的自动化项目驻留在自动化项目中。通过调用此方法我需要调用上面的类并且当我这样做时我收到错误。文件:Resource.java @POST @Path("/execute") @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) public Response executeScript(String data) throws JSONException { ArrayList<Object> testCases = new ArrayList<Object>(); JSONArray jsonArray = new JSONArray(); JSONObject json = new JSONObject(data); String configFile = (String) json.get("ConfigFiles"); String sheetName = (String) json.get("Sheetname"); jsonArray = (JSONArray) json.get("testCases"); for (int i = 0 ; i < jsonArray.length() ; i++) { testCases.add(jsonArray.get(i)); } try { TestNGCreator.main(null); //here i am calling that class main method } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } Response response = null; System.out.println(jsonArray); System.out.println(testCases); return response; }
1 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
我在你的 pom 文件中没有看到 test-ng 依赖项。请添加以下内容并尝试。
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.10</version>
<scope>test</scope>
</dependency>
添加回答
举报
0/150
提交
取消