Is it possible to change Intellij's naming convention for unit tests?
I'm working on a project where the convention is to name test classes TestSomething insteadof SomethingTest. Is it possible to configure Intellij to understand this convention? It would be really nice to be able to jump between test a开发者_如何学JAVAnd implementation using Ctrl+Shift-T again!
Jump should work fine with any convention, IDEA is using .*class_name.*
pattern for this feature.
精彩评论