Christian
- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 36
-
Edited Weird behaviour when committing merge from trunk to branch on SVN (and diffing the commit)
AnsweredWe use SVN. I merged changes from trunk into a checked-out branch (using the Version Control panel > Subversion Working Copies Information > Merge From... > trunk > Quick Manual Select). I got a me... -
Created SVN: See changes made over different revisions to several files (to peer review code changes form a while back)?
AnsweredHello, To implement a feature (bug fix), a colleague added changes to trunk in several revisions - say 7, 9 and 15. Each time, he worked on several files. Some of the files were worked on in more t... -
Created Does maven/IntelliJ pick up MAVEN_OPTS defined in ~/.bash_profile?
AnsweredDoes maven (when started form within IntelliJ via the right-hand panel) pick up -MAVEN_OPTS defined in ~/.bash_profile (on a Mac)? -
Created Preferences > Version Control > Ignored Files seems to have no effect on git?
AnsweredHello all, I've set up git (github) and added files to the Ignored Files list, but when I run git status, they are still picked up. I had to manually put a .gitignore file into the project root (an... -
Created How do you control Maven Profiles properly?
AnsweredHi, We have a maven project with a parent pom specifying two profiles, mini (the default) and max, and several child modules (mini uses two, max all). Each child module can define further profiles.... -
Created IntelliJ flags static import of assertEquals as unused - even though it is used.
AnsweredHi! I've got the following import: import static org.junit.Assert.assertEquals;And I have the following test code in that test class: assertEquals(BigInteger.ONE,actual.getFoo());Any idea what's go... -
Created Intention action do not offer to import org.junit, only junit.framework
AnsweredHi, Since switching to IntelliJ 2016.3.4 (Community Edition) from 15.x, the intention action (Alt + Enter) to statically import JUnit methods doesn't seem to offer any methods from the org.junit pa... -
Created Toggle auto-test in debugger has no effect?
AnsweredHI, I'm using the community edition (2016.3.2 64 bit). After I ran a test, I clicked the "Toggle auto-test" button in the debugger: https://www.jetbrains.com/help/img/idea/2016.3/icon_toggleAutoTes... -
Created Autocomplete and wrap following statement?
AnsweredHello! Say, I have the following code: foo.getBar(); Now, I want to wrap that, e.g. pass bar's return value into baz.setBar(); I start writing (| is the cursor): baz.|foo.getBar(); At this point, I... -
Created Can I add a new default Test Resources Root?
AnsweredHi all, At work, we always save our integration tests under src/integrationtest/java, with the resources under src/integrationtest/resources. Our maven projects do have this directory structure set...