/src/main/resources/com/onresolve/jira/groovy/test/TestScriptListeners.groovy
https://bitbucket.org/sorin/jira-plugin-intellij · Groovy · 27 lines · 17 code · 6 blank · 4 comment · 0 complexity · 2d72968387cdd86d00281faafece59ff MD5 · raw file
- package com.onresolve.jira.groovy.test
-
- import org.apache.log4j.Category
- import com.atlassian.jira.issue.search.SearchProvider
- import com.atlassian.jira.security.JiraAuthenticationContext
- import org.junit.Before
- import org.junit.Test
-
- class TestScriptListeners extends BaseSubTaskTest {
-
- Category log = Category.getInstance(this.class)
- SearchProvider searchProvider = componentManager.getSearchProvider()
- JiraAuthenticationContext authenticationContext = componentManager.getJiraAuthenticationContext()
-
- @Before
- public void setUp() {
-
- }
-
- /**
- * Add a script listener from the alternate resource directory, modify it and make sure we get the new results
- */
- @Test
- public void testScriptListenersReload () {
- // todo: this is too tricky right now
- }
- }