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.
It looks like you're new here. Sign in or register to get started.