Posts Tagged ‘editor’

IntelliJ Structural Search to Convert from JUnit3 to Junit4

Wednesday, January 18th, 2012 by Jesper Rønn-Jensen

Just a quick tip for intellij users. For an old project i wanted to convert JUnit 3 testcases to JUnit4 format. Most stuff was already in place, but after the conversion, i found that some of the old “assertTrue”, “assertFalse”, and “assertEquals” statements were failing. So i ended up with some short search/replace, which are really […]

How to move IntelliJ system file to another folder

Monday, April 4th, 2011 by Jesper Rønn-Jensen

For work, I use IntelliJ IDEA, when working in Java world. For my current client, there is a quota on my user directory, which means I have to move IDEA system files to another folders. Locate the file idea.properties in your IntelliJ Idea\bin folder Edit idea.config.path Restart I changed it from idea.config.path=${user.home}/.IntelliJIdea10/config to idea.config.path=${idea.home}/.IntelliJIdea10/config It […]