Kristian Rosenvold

- Total activity 45
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 13
-
Created Right click to run junit tests in gradle project broken ?
It seems like the capablitiy to run a single method with the idea test runner is unavailable for single methods in recent eaps, is this a known issue ?Additionally there is also a "lag" when you mo... -
Created builrd/resources broken for gradle projects ?
At some change in some 13.x version (and EAP 14), the classpath when running an application in a gradle project no longer includes src/main/resources (through "build/resources/main" or any other fo... -
Created Go to implementation for autoboxed lambdas (JDK8) ?
given a single method lambda interface:interface MyLambda { String myMethod(File file);}And a class:class MyService {private final MyLambda myLambdapublic MyService(MyLambda lambda){this.myLambda ... -
Created Unicode filenames within a unit test on the mac ?
I have this really puzzling project that runs both in maven and intellij on linux, but once I move to the mac the unit test simply fails when I run it with the intellij test runner.The project can ... -
Created Git "compare with" changed in 90.137...
While the previous git "compare with" was kind-of broken because it showed all changes on all branches (and it was broken because it wasn't showing which branch each commit was on),90.137 only show... -
Created My bookmark feature is broken in IU-90.94
In earlier versions of idea, I would use ctrl-shift-1, ctrl-shift-2, ctrl-shift-3 to create a"context trail" when analyzing code (try it if you haven't it's really really great - then you can navig... -
Created What stacked operations are available ?
I have become a big fan of the safe delete "stacked operation". When I'm at a specific method I run "safe delete". For each usage that pops up in the "usages" window I just run safe-delete on each ... -
Created How do I analyze a service with intent of splitting it up ?
I have a service with 10 methods on the interface. There are also 10 injected dependencies into the implementation class. This class is getting way too fat. The interface has a large number of use... -
Created Idea 8.0 Maven classpath order ?
We have been trying to use the built-in maven support for idea in both version 7 and 8, and its never been quite successful.Mostly the problem seems to be related to the order of the classpath item... -
Created How to create junit test from implementation class ?
Let's say someone has written a class with no test coverage. I want to make a unit test.Today I would do "copy class" and append Test to the class name, keep same package name, choose my test sourc...