PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/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
  1. package com.onresolve.jira.groovy.test
  2. import org.apache.log4j.Category
  3. import com.atlassian.jira.issue.search.SearchProvider
  4. import com.atlassian.jira.security.JiraAuthenticationContext
  5. import org.junit.Before
  6. import org.junit.Test
  7. class TestScriptListeners extends BaseSubTaskTest {
  8. Category log = Category.getInstance(this.class)
  9. SearchProvider searchProvider = componentManager.getSearchProvider()
  10. JiraAuthenticationContext authenticationContext = componentManager.getJiraAuthenticationContext()
  11. @Before
  12. public void setUp() {
  13. }
  14. /**
  15. * Add a script listener from the alternate resource directory, modify it and make sure we get the new results
  16. */
  17. @Test
  18. public void testScriptListenersReload () {
  19. // todo: this is too tricky right now
  20. }
  21. }