0

有一些指定的位置存在功能文件。需要将这些文件复制到

src/test/resources/ 

在作为自动化的一部分执行测试用例之前。

我尝试使用

@BeforeClass
//java code to do copying of files from one location to other

但 Cucumber 会首先扫描所有功能文件。因此,它失败了,因为没有找到下面提到的任何功能文件

@CucumberOptions(features = "src/test/resources/subscription.feature")
4

1 回答 1

0

使用maven resources plugin中的validate phase复制功能文件。Link ,根据您的配置更改outputDirectoryand 。resource directory

<plugin>
    <artifactId>maven-resources-plugin</artifactId>
    <version>3.0.2</version>
    <executions>
        <execution>
            <id>copy-resources</id>
            <phase>validate</phase>
            <goals>
                <goal>copy-resources</goal>
            </goals>
            <configuration>
            <!-- Destination folder -->     
         <outputDirectory>${basedir}\src\test\resources\features</outputDirectory>
                <resources>
                    <resource>
                    <!-- Source folder -->
                    <directory>E:\.....\nonresource</directory>
                    </resource>
               </resources>
          </configuration>
        </execution>
    </executions>
</plugin>
于 2018-04-25T06:19:28.280 回答