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?
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>
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.