Can I change the Intellij naming convention for unit tests?

I am working on a project where the convention should call TestSomething test classes instead of SomethingTest. Can Intellij be configured to understand this convention? It would be great if you could jump between test and implementation using Ctrl + Shift-T again!

+4
source share
1 answer

The jump should work fine with any agreement, IDEA uses the .*class_name.* Template for this function.

+4
source

All Articles