Skip to content

greatbit/import-maven-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quack Import Plugin

The plugin allows importing testcases to QuAck. All modifications made on testcases in QuAck manually will remain. However, tests from the same Maven project will be reconfigured on import - new will appear, removed will disappear.

Import JUmit4 tests

<plugin>
    <groupId>com.testquack</groupId>
    <artifactId>import-maven-plugin</artifactId>
    <version>1.1</version>
    <configuration>
        <apiToken>abc</apiToken>
        <quackProject>quackui</quackProject>
        <apiEndpoint>http://quack.com/api/</apiEndpoint>
    </configuration>
    <executions>
        <execution>
            <id>quack-testcases-import</id>
            <goals>
                <goal>junit-import</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Import JUmit4 tests results

<plugin>
    <groupId>com.testquack</groupId>
    <artifactId>import-maven-plugin</artifactId>
    <version>1.1</version>
    <configuration>
        <apiToken>abc</apiToken>
        <quackProject>quackui</quackProject>
        <apiEndpoint>http://quack.com/api/</apiEndpoint>
        <junitXmlResource>${project.build.directory}/surefire-reports</junitXmlResource>
    </configuration>
    <executions>
        <execution>
            <id>quack-results-import</id>
            <goals>
                <goal>junit-results-import</goal>
            </goals>
        </execution>
    </executions>
</plugin>

About

Mave plugin to import java tests and results to QuAck

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages