Re: [jbehave-dev] Started playing around with JBehave

2007-03-22 Thread Elizabeth Keogh
Hi Michael, Thanks so much for this; I am on the case. Bug fixes / silly dependency fixes should be checked in today or tomorrow. Great suggestions too! cheers! Cheers, Liz. "Michael Hunger" <[EMAIL PROTECTED]> wrote on 22/03/2007 02:05:17: > Some things: > * either in UsingMatchers recurses

[jbehave-scm] [707] trunk/core/src/java/org/jbehave/core/mock: [EK] TimeoutException no longer dependent on extensions; SwingBehaviourException deleted as no longer used by anything.

2007-03-22 Thread sirenian
Title: [707] trunk/core/src/java/org/jbehave/core/mock: [EK] TimeoutException no longer dependent on extensions; SwingBehaviourException deleted as no longer used by anything. Revision 707 Author sirenian Date 2007-03-22 08:34:12 -0500 (Thu, 22 Mar 2007) Log Message [EK] TimeoutException

Re: [jbehave-dev] Started playing around with JBehave

2007-03-22 Thread Elizabeth Keogh
"Michael Hunger" <[EMAIL PROTECTED]> wrote on 22/03/2007 02:05:17: > * either in UsingMatchers recurses infinitely, a call to or() should fit > there Fixed! > * perhaps it would be convenient to have static inner classes for the > different custom matchers? This should speed things a bit up

[jbehave-dev] [jira] Created: (JBEHAVE-82) Behaviour plugin produces multiple launches for the same behaviour.

2007-03-22 Thread Elizabeth Keogh (JIRA)
Behaviour plugin produces multiple launches for the same behaviour. --- Key: JBEHAVE-82 URL: http://jira.codehaus.org/browse/JBEHAVE-82 Project: JBehave Issue Type: Bug

[jbehave-dev] [jira] Closed: (JBEHAVE-80) I can't use enums as World keys.

2007-03-22 Thread Elizabeth Keogh (JIRA)
[ http://jira.codehaus.org/browse/JBEHAVE-80?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Elizabeth Keogh closed JBEHAVE-80. -- Assignee: Elizabeth Keogh Resolution: Fixed I can now use any object as a World key. > I can't

[jbehave-dev] [jira] Closed: (JBEHAVE-81) Scenario steps should throw Exception in their signature.

2007-03-22 Thread Elizabeth Keogh (JIRA)
[ http://jira.codehaus.org/browse/JBEHAVE-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Elizabeth Keogh closed JBEHAVE-81. -- Resolution: Fixed Scenario steps throw Exception in their main perform-method. They do _not_ throw E

[jbehave-scm] [708] trunk/core/src/java/org/jbehave/core/mock: [EK] Added some missing UserMatchersBehaviours.

2007-03-22 Thread sirenian
Title: [708] trunk/core/src/java/org/jbehave/core/mock: [EK] Added some missing UserMatchersBehaviours. Revision 708 Author sirenian Date 2007-03-22 09:06:33 -0500 (Thu, 22 Mar 2007) Log Message [EK] Added some missing UserMatchersBehaviours. And gained a better understanding of how anyth

[jbehave-scm] [709] trunk/core/src/behaviour/org/jbehave/core/UsingMatchersBehaviour.java: [EK] And a couple more missing behaviours.

2007-03-22 Thread sirenian
Title: [709] trunk/core/src/behaviour/org/jbehave/core/UsingMatchersBehaviour.java: [EK] And a couple more missing behaviours. Revision 709 Author sirenian Date 2007-03-22 09:09:30 -0500 (Thu, 22 Mar 2007) Log Message [EK] And a couple more missing behaviours. Modified Paths trunk/core/

Re: [jbehave-dev] [jira] Created: (JBEHAVE-82) Behaviour plugin produces multiple launches for the same behaviour.

2007-03-22 Thread Dan North
What's wrong with multiple lunches? Oh, /launches/! Elizabeth Keogh (JIRA) wrote: Behaviour plugin produces multiple launches for the same behaviour. --- Key: JBEHAVE-82 URL: http://jira.codehaus.

Re: [jbehave-dev] [jira] Closed: (JBEHAVE-81) Scenario steps should throw Exception in their signature.

2007-03-22 Thread Dan North
Anything used as keys should have the same caveats as usual map keys, i.e. they should be immutable and their hashCode should play nice with their equals. Cheers, Dan Elizabeth Keogh (JIRA) wrote: [ http://jira.codehaus.org/browse/JBEHAVE-81?page=com.atlassian.jira.plugin.system.issueta

[jbehave-scm] [710] trunk/core/src/behaviour/org/jbehave/core: [EK] Last matcher behaviours, added World key caveat to javadocs (happy Dan?)

2007-03-22 Thread sirenian
Title: [710] trunk/core/src/behaviour/org/jbehave/core: [EK] Last matcher behaviours, added World key caveat to javadocs (happy Dan?) Revision 710 Author sirenian Date 2007-03-22 09:58:24 -0500 (Thu, 22 Mar 2007) Log Message [EK] Last matcher behaviours, added World key caveat to javadocs

[jbehave-dev] Re: [jbehave-scm] [710] trunk/core/src/behaviour/org/jbehave/core: [EK] Last matcher behaviours, added World key caveat to javadocs (happy Dan?)

2007-03-22 Thread Dan North
:) <-- happy Dan [EMAIL PROTECTED] wrote: Revision 710 Author sirenian Date 2007-03-22 09:58:24 -0500 (Thu, 22 Mar 2007) Log Message [EK] Last matcher behaviours, added World key caveat to javadocs (happy Dan?)

[jbehave-dev] Code reading ... continued, IntellJ-Plugin, JUnit wrapper

2007-03-22 Thread Michael Hunger
Some more things I found when looking at the codebase. JBehaveFrameworkError duplicates the behaviour of java.lang.Error regarding nested Throwables. It introduces a NullPointerException in the Constructor JBehaveFrameworkError(Throwable) - line 38 if the throwable is null (btw. why the prin