java.lang.NoSuchMethodError:'com.intuit.karate.Main.parseKarateOptionsAndQuotePath(java.lang.String)'

问题描述 投票:0回答:1

我正在使用空手道 1.5.0.RC3 和 Java 17。 当我尝试运行一个简单的功能时,出现以下错误: 线程“main”中出现异常 java.lang.NoSuchMethodError: 'com.intuit.karate.Main com.intuit.karate.Main.parseKarateOptionsAndQuotePath(java.lang.String)'

有什么问题吗? 先谢谢你了

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>org.example</groupId>
  <artifactId>solvingError_Java</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>solvingError_Java</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>


    <dependency>
      <groupId>io.karatelabs</groupId>
      <artifactId>karate-core</artifactId>
      <version>1.5.0.RC3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.intuit.karate</groupId>
      <artifactId>karate-junit5</artifactId>
      <version>1.2.0</version>
      <scope>test</scope>
    </dependency>


    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.11.0-M2</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.11.0-M2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.masterthought</groupId>
      <artifactId>cucumber-reporting</artifactId>
      <version>4.10.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.graalvm.js</groupId>
      <artifactId>js</artifactId>
      <version>21.3.0</version>
    </dependency>
    <dependency>
      <groupId>org.graalvm.js</groupId>
      <artifactId>js-scriptengine</artifactId>
      <version>21.3.0</version>
    </dependency>


  </dependencies>
</project>

我尝试运行这个简单的功能。

Feature: My first feature with Karate

  Background:

    * configure ssl = true
    * url 'https://myurl'


  Scenario: test de connexion 

    Given path 'my path'
    When method GET
    Then status 200

我期待测试顺利进行

java karate java-17 graalvm runner
1个回答
0
投票

方法

Main.parseKarateOptionsAndQuotePath()
karate-core 1.5.0 中被作为“死代码”删除。看起来它在调用方法之前添加了一些引号来解决一些 IDE 问题
Main.parseKarateOptions()
:

// 添加双引号到最后一个位置参数(路径),以防它包含空格和未加引号的

// 仅当行仅包含一个位置参数(路径)并且它是行中的最后一个时。

// intelli-j 和 vs-code 生成的 cli 调用需要

您可能只需致电

Main.parseKarateOptions()
即可。

© www.soinside.com 2019 - 2024. All rights reserved.