How to write integration tests

Henryk Birkhölzer November 16, 2017

I am trying to understand how to create integration tests for plugins for Jira 7.5.x. The process descriped here does no longer work becuase of the switch from JUnit 3 to 4 described here. But I am not able to replicate the steps outlined in the second article either because it can't find the package: com.atlassian.jira.functest.*
Is there already a new way to write integration tests or am I missing something?

2 answers

1 accepted

1 vote
Answer accepted
Gregor Kasmann_Actonic
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 16, 2017

Have you added the dependency to your .pom file?

<dependency>
    <groupId>com.atlassian.jira</groupId>
    <artifactId>jira-func-tests</artifactId>
    <version>${jira.version}</version>
    <scope>test</scope>
</dependency>
Henryk Birkhölzer November 16, 2017

Thanks. That did the trick. I looked this artifact up in the wrong maven repo where only a 7.1.0-SNAPSHOT-RELEASE65-ATSLATTOMCAT2-369 version was abvaible. So I thought it was discontinued. Triying with ${jira.version} helped.

0 votes
Henryk Birkhölzer November 16, 2017

.

Suggest an answer

Log in or Sign up to answer