0

"Create new test" dialog in IntelliJ

enter image description here

automates creation of test classes. Test classes are autogenerated classes, bases on selected ones.

Can I create such dialog of template of my own?

I would like to create classes like this

public interface AddressRepo extends CrudRepository<Address, Long> {
}

where Address is the name of original class.

Dims
  • 47,675
  • 117
  • 331
  • 600
  • Yes, you can write a plugin that will show such a dialog and create the classes for you. – yole Apr 20 '17 at 07:41
  • Yes I can write my own `IDE` with such function :) – Dims Apr 20 '17 at 16:56
  • Fortunately, writing a plugin requires considerably less effort than writing a full IDE, especially given that you can use the existing "generate tests" functionality as an example. – yole Apr 21 '17 at 10:27

0 Answers0