On Thu, 26 Feb 2009, Martijn Dashorst wrote: > Can we (I) commit test cases for a bug without a solution?
Normally it might be better to leave them to jira but then the nuisance is that they get out of sync with the rest of the code. In some cases on some projects we have committed failing test cases in situations where it has been obvious that the bug must be fixed soon and the test has helped in it. The way how to disable it depends on the test framework used, probably with JUnit 3 the best is to make the test method private, because then IDEs typically claim about unused method and you notice that something should be done. Best wishes, Timo