Running unit tests from currently opened file in IntelliJ IDEA

2022-09-01 13:17:06

Is there any way to have IntelliJ run the current MyTest.java file I'm looking at?

Thanks


答案 1

Yeah, you can either:

  1. Right click on the file and go to

    Run 'MyTest'

  2. Use the key binding: if the caret is in a method on that method will be run
    • on a Mac: it's Control+Fn+Shift+F10
    • elsewhere: it's Alt+Shift+F10

答案 2

Accepted answer did not work for me on a MacOS running Android Studio 2.1.13 .

After looking up the "Run Context Configuration" action mentioned by @ShawnFumo's comment, I found Ctrl + Shift + R which ended up working.


推荐