728x90

 

나는 Java/ Maven Project 를 intelliJ IDEA에서 하고 있습니다.

그런데 내가 test 를 실행할려고 할때, 아래 그림과 같이 "Noting Here" 라는 메세지가 나오면서 실행이 안되네요.

그래서 한참을 찾다가 아래와 같은 해결책을 발견하여 공유합니다.

(I have a Java / maven project in IntelliJ IDEA, but when I try to run a test I got the message "Nothing Here")

 

1. 단계

- Preferences.. 에서 Plugins 탭에서 Gradle을 찾아보세요.

- Gradle이 설치되어 있는지 살펴보고 설치되어 Enable 되어 있다면 Disable 해주세요.

Apply 버튼을 클릭하시고 IntelliJ IDEA 를 Restart 합니다.

재 실행해서 보시면 아래와 같이 뜬다면 1단계는 성공 입니다~~!!!

 

2. 단계 : disabled_plugins.txt 를 찾아 아래 내용을 삭제합니다.

org.jetbrains.idea.gradle.ext
org.jetbrains.plugins.gradle
org.jetbrains.plugins.gradle.maven

 

전 여러개의 버전이 존재하는데 현재 2019.3 버전을 사용하고 있네요.

./Library/Preferences/IntelliJIdea2018.1/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2019.3/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2017.2/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2019.2/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2017.3/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2018.3/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2016.2/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2018.2/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2016.3/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2017.1/disabled_plugins.txt
./Library/Preferences/IntelliJIdea2019.1/disabled_plugins.txt

 

# vi  ./Library/Preferences/IntelliJIdea2019.3/disabled_plugins.txt

CFML Support
CloudFoundry
DevKit
GlassFish
IdeaVIM
JBoss
JSR45Plugin
Jetty
Resin
WebSphere
Weblogic
com.intellij.dmserver
com.intellij.drools
com.intellij.gradle
com.intellij.gwt
com.intellij.javaee.view
com.intellij.jboss.arquillian
com.intellij.jboss.core
com.intellij.seam
com.intellij.seam.pageflow
com.intellij.seam.pages
com.intellij.struts2
com.intellij.tapestry
com.intellij.uiDesigner
cucumber-groovy
org.intellij.grails
org.jetbrains.android
org.jetbrains.idea.gradle.ext  <<--- 찾았다 요놈!!!

 

그래도 해결 안된다면!!

마지막으로 위의 1,2단계로 해도 해결이 되지 않는다면 idea.log파일을 열어두고 해당 이슈에 대해 반복발생시켜서 살펴봐야 합니다.

(Help | Show Log In Explorer)

 

If it doesn't help, attach your idea.log file after reproducing the issue (Help | Show Log in Explorer).

 


참고 URL 

https://youtrack.jetbrains.com/issue/IDEA-228180?_ga=2.175130594.1707466865.1580292427-909525344.1568791489

https://stackoverflow.com/questions/59784808/cant-run-test-on-intellij-idea

+ Recent posts