- Revision
- 617
- Author
- tastapod
- Date
- 2006-12-06 09:57:24 -0600 (Wed, 06 Dec 2006)
Log Message
[dn] moved BlahUsingMiniMock into jbehave.core.minimock.story.domain package as per Mauro's suggestion
Modified Paths
- trunk/core/src/behaviour/jbehave/core/story/SimpleStory.java
- trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForASmirnov.java
- trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForAnAbsolut.java
- trunk/core/src/behaviour/jbehave/core/story/stories/givens/JoeIsThirsty.java
- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderDeniesJoe.java
- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderServesJoe.java
- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsHappy.java
- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsUnhappy.java
- trunk/core/src/java/jbehave/core/story/domain/Event.java
- trunk/core/src/java/jbehave/core/story/domain/Given.java
- trunk/core/src/java/jbehave/core/story/domain/GivenScenario.java
- trunk/core/src/java/jbehave/core/story/domain/Outcome.java
- trunk/examples/atm/src/stories/example/atm/events/UserRequestsCash.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftFacility.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftPermission.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountHasNegativeBalanceWithoutPermission.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountHasOverdraftPermission.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountHasPositiveBalance.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountIsInCredit.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverOverdraftLimit.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawn.java
- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawnWithPermission.java
- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldDispenseCash.java
- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRefuseCash.java
- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRetainBankCard.java
- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldReturnBankCardToCustomer.java
- trunk/examples/atm/src/stories/example/atm/outcomes/AccountBalanceShouldBeReduced.java
- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/events/HellboundEvent.java
- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/givens/HellboundGiven.java
- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/outcomes/HellboundOutcome.java
Added Paths
- trunk/core/src/java/jbehave/core/minimock/story/
- trunk/core/src/java/jbehave/core/minimock/story/domain/
- trunk/core/src/java/jbehave/core/minimock/story/domain/EventUsingMiniMock.java
- trunk/core/src/java/jbehave/core/minimock/story/domain/GivenUsingMiniMock.java
- trunk/core/src/java/jbehave/core/minimock/story/domain/OutcomeUsingMiniMock.java
Removed Paths
Diff
Modified: trunk/core/src/behaviour/jbehave/core/story/SimpleStory.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/SimpleStory.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/SimpleStory.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,10 +1,10 @@ package jbehave.core.story; -import jbehave.core.story.domain.EventUsingMiniMock; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.MultiStepScenario; import jbehave.core.story.domain.Narrative; -import jbehave.core.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.ScenarioDrivenStory; import jbehave.core.story.domain.World;
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForASmirnov.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForASmirnov.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForASmirnov.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.events; -import jbehave.core.story.domain.EventUsingMiniMock; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; import jbehave.core.story.domain.World; public class JoeAsksForASmirnov extends EventUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForAnAbsolut.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForAnAbsolut.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/events/JoeAsksForAnAbsolut.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.events; -import jbehave.core.story.domain.EventUsingMiniMock; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; import jbehave.core.story.domain.World; public class JoeAsksForAnAbsolut extends EventUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/givens/JoeIsThirsty.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/givens/JoeIsThirsty.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/givens/JoeIsThirsty.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.givens; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World; public class JoeIsThirsty extends GivenUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderDeniesJoe.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderDeniesJoe.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderDeniesJoe.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World; public class BartenderDeniesJoe extends OutcomeUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderServesJoe.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderServesJoe.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/BartenderServesJoe.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World; public class BartenderServesJoe extends OutcomeUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsHappy.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsHappy.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsHappy.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World; public class JoeIsHappy extends OutcomeUsingMiniMock {
Modified: trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsUnhappy.java (616 => 617)
--- trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsUnhappy.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/behaviour/jbehave/core/story/stories/outcomes/JoeIsUnhappy.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package jbehave.core.story.stories.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World; public class JoeIsUnhappy extends OutcomeUsingMiniMock {
Copied: trunk/core/src/java/jbehave/core/minimock/story/domain/EventUsingMiniMock.java (from rev 616, trunk/core/src/java/jbehave/core/story/domain/EventUsingMiniMock.java) (0 => 617)
--- trunk/core/src/java/jbehave/core/minimock/story/domain/EventUsingMiniMock.java (rev 0) +++ trunk/core/src/java/jbehave/core/minimock/story/domain/EventUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -0,0 +1,28 @@ +/* + * Created on 25-Aug-2004 + * + * (c) 2003-2004 ThoughtWorks Ltd + * + * See license.txt for license details + */ +package jbehave.core.minimock.story.domain; + +import jbehave.core.minimock.UsingMiniMock; +import jbehave.core.story.domain.Event; +import jbehave.core.story.domain.World; +import jbehave.core.story.renderer.Renderer; + + +/** + * @author <a href="" PROTECTED]">Dan North</a> + */ +public abstract class EventUsingMiniMock extends UsingMiniMock implements Event { + + public void tidyUp(World world) { + // default empty implementation + }; + + public void narrateTo(Renderer renderer) { + renderer.renderEvent(this); + } +}
Copied: trunk/core/src/java/jbehave/core/minimock/story/domain/GivenUsingMiniMock.java (from rev 616, trunk/core/src/java/jbehave/core/story/domain/GivenUsingMiniMock.java) (0 => 617)
--- trunk/core/src/java/jbehave/core/minimock/story/domain/GivenUsingMiniMock.java (rev 0) +++ trunk/core/src/java/jbehave/core/minimock/story/domain/GivenUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -0,0 +1,30 @@ +/* + * Created on 29-Aug-2004 + * + * (c) 2003-2004 ThoughtWorks Ltd + * + * See license.txt for license details + */ +package jbehave.core.minimock.story.domain; + +import jbehave.core.minimock.UsingMiniMock; +import jbehave.core.story.domain.Given; +import jbehave.core.story.domain.World; +import jbehave.core.story.renderer.Renderer; + + + +/** + * @author <a href="" PROTECTED]">Dan North</a> + */ +public abstract class GivenUsingMiniMock extends UsingMiniMock implements Given { + public void narrateTo(Renderer renderer) { + renderer.renderGiven(this); + } + + public void cleanUp(World world) { + // default empty implementation + } + + +}
Copied: trunk/core/src/java/jbehave/core/minimock/story/domain/OutcomeUsingMiniMock.java (from rev 616, trunk/core/src/java/jbehave/core/story/domain/OutcomeUsingMiniMock.java) (0 => 617)
--- trunk/core/src/java/jbehave/core/minimock/story/domain/OutcomeUsingMiniMock.java (rev 0) +++ trunk/core/src/java/jbehave/core/minimock/story/domain/OutcomeUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -0,0 +1,30 @@ +/* + * Created on 29-Aug-2004 + * + * (c) 2003-2004 ThoughtWorks Ltd + * + * See license.txt for license details + */ +package jbehave.core.minimock.story.domain; + +import jbehave.core.minimock.UsingMiniMock; +import jbehave.core.story.domain.Outcome; +import jbehave.core.story.domain.World; +import jbehave.core.story.renderer.Renderer; + + +/** + * Represents an outcome of a scenario + * + * This class is stateful - see [EMAIL PROTECTED] #narrateTo(Renderer)} for details. + * + * @author <a href="" PROTECTED]">Dan North</a> + */ +public abstract class OutcomeUsingMiniMock extends UsingMiniMock implements Outcome { + public abstract void verify(World world); + public void narrateTo(Renderer renderer) { + renderer.renderOutcome(this); + } + public void tidyUp(World world) { + } +}
Modified: trunk/core/src/java/jbehave/core/story/domain/Event.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/Event.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/Event.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,6 +7,8 @@ */ package jbehave.core.story.domain; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; + /** * <p>An Event, occurring in a particular context, with a desired outcome, * forms the basis of a [EMAIL PROTECTED] Scenario}.</p>
Deleted: trunk/core/src/java/jbehave/core/story/domain/EventUsingMiniMock.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/EventUsingMiniMock.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/EventUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,26 +0,0 @@ -/* - * Created on 25-Aug-2004 - * - * (c) 2003-2004 ThoughtWorks Ltd - * - * See license.txt for license details - */ -package jbehave.core.story.domain; - -import jbehave.core.minimock.UsingMiniMock; -import jbehave.core.story.renderer.Renderer; - - -/** - * @author <a href="" PROTECTED]">Dan North</a> - */ -public abstract class EventUsingMiniMock extends UsingMiniMock implements Event { - - public void tidyUp(World world) { - // default empty implementation - }; - - public void narrateTo(Renderer renderer) { - renderer.renderEvent(this); - } -}
Modified: trunk/core/src/java/jbehave/core/story/domain/Given.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/Given.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/Given.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,6 +7,8 @@ */ package jbehave.core.story.domain; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; + /** * <p>A Given is the context in which a scenario runs.</p> *
Modified: trunk/core/src/java/jbehave/core/story/domain/GivenScenario.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/GivenScenario.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/GivenScenario.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,10 +7,12 @@ */ package jbehave.core.story.domain; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; + /** * Adapter to allow a [EMAIL PROTECTED] Scenario} to be used as the context * for another Scenario.
Deleted: trunk/core/src/java/jbehave/core/story/domain/GivenUsingMiniMock.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/GivenUsingMiniMock.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/GivenUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,28 +0,0 @@ -/* - * Created on 29-Aug-2004 - * - * (c) 2003-2004 ThoughtWorks Ltd - * - * See license.txt for license details - */ -package jbehave.core.story.domain; - -import jbehave.core.minimock.UsingMiniMock; -import jbehave.core.story.renderer.Renderer; - - - -/** - * @author <a href="" PROTECTED]">Dan North</a> - */ -public abstract class GivenUsingMiniMock extends UsingMiniMock implements Given { - public void narrateTo(Renderer renderer) { - renderer.renderGiven(this); - } - - public void cleanUp(World world) { - // default empty implementation - } - - -}
Modified: trunk/core/src/java/jbehave/core/story/domain/Outcome.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/Outcome.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/Outcome.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,6 +7,8 @@ */ package jbehave.core.story.domain; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; + /** * <p>An outcome follows an event that has been run in a * particular context.</p>
Deleted: trunk/core/src/java/jbehave/core/story/domain/OutcomeUsingMiniMock.java (616 => 617)
--- trunk/core/src/java/jbehave/core/story/domain/OutcomeUsingMiniMock.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/core/src/java/jbehave/core/story/domain/OutcomeUsingMiniMock.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,28 +0,0 @@ -/* - * Created on 29-Aug-2004 - * - * (c) 2003-2004 ThoughtWorks Ltd - * - * See license.txt for license details - */ -package jbehave.core.story.domain; - -import jbehave.core.minimock.UsingMiniMock; -import jbehave.core.story.renderer.Renderer; - - -/** - * Represents an outcome of a scenario - * - * This class is stateful - see [EMAIL PROTECTED] #narrateTo(Renderer)} for details. - * - * @author <a href="" PROTECTED]">Dan North</a> - */ -public abstract class OutcomeUsingMiniMock extends UsingMiniMock implements Outcome { - public abstract void verify(World world); - public void narrateTo(Renderer renderer) { - renderer.renderOutcome(this); - } - public void tidyUp(World world) { - } -}
Modified: trunk/examples/atm/src/stories/example/atm/events/UserRequestsCash.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/events/UserRequestsCash.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/events/UserRequestsCash.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.events; -import jbehave.core.story.domain.EventUsingMiniMock; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftFacility.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftFacility.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftFacility.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,8 +8,8 @@ package example.atm.givens; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.mock.Mock; -import jbehave.core.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftPermission.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftPermission.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountDoesNotHaveOverdraftPermission.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,8 +8,8 @@ package example.atm.givens; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.mock.Mock; -import jbehave.core.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountHasNegativeBalanceWithoutPermission.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountHasNegativeBalanceWithoutPermission.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountHasNegativeBalanceWithoutPermission.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.givens; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountHasOverdraftPermission.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountHasOverdraftPermission.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountHasOverdraftPermission.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,7 +8,7 @@ package example.atm.givens; import jbehave.core.Ensure; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountHasPositiveBalance.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountHasPositiveBalance.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountHasPositiveBalance.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,8 +8,8 @@ package example.atm.givens; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.mock.Mock; -import jbehave.core.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountIsInCredit.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountIsInCredit.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountIsInCredit.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,8 +8,8 @@ package example.atm.givens; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.mock.Mock; -import jbehave.core.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverOverdraftLimit.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverOverdraftLimit.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverOverdraftLimit.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.givens; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawn.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawn.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawn.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,8 +7,8 @@ */ package example.atm.givens; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.mock.Mock; -import jbehave.core.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawnWithPermission.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawnWithPermission.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/givens/AccountIsOverdrawnWithPermission.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.givens; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldDispenseCash.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldDispenseCash.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldDispenseCash.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRefuseCash.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRefuseCash.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRefuseCash.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRetainBankCard.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRetainBankCard.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldRetainBankCard.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldReturnBankCardToCustomer.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldReturnBankCardToCustomer.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/outcomes/ATMShouldReturnBankCardToCustomer.java 2006-12-06 15:57:24 UTC (rev 617) @@ -7,7 +7,7 @@ */ package example.atm.outcomes; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/atm/src/stories/example/atm/outcomes/AccountBalanceShouldBeReduced.java (616 => 617)
--- trunk/examples/atm/src/stories/example/atm/outcomes/AccountBalanceShouldBeReduced.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/atm/src/stories/example/atm/outcomes/AccountBalanceShouldBeReduced.java 2006-12-06 15:57:24 UTC (rev 617) @@ -8,7 +8,7 @@ package example.atm.outcomes; import jbehave.core.Ensure; -import jbehave.core.story.domain.OutcomeUsingMiniMock; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World;
Modified: trunk/examples/hellbound/src/stories/com/sirenian/hellbound/events/HellboundEvent.java (616 => 617)
--- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/events/HellboundEvent.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/hellbound/src/stories/com/sirenian/hellbound/events/HellboundEvent.java 2006-12-06 15:57:24 UTC (rev 617) @@ -1,6 +1,6 @@ package com.sirenian.hellbound.events; -import jbehave.core.story.domain.EventUsingMiniMock; +import jbehave.core.minimock.story.domain.EventUsingMiniMock; import jbehave.core.story.domain.World; import jbehave.extensions.threaded.swing.SwingBehaviourException; import jbehave.extensions.threaded.swing.WindowWrapper;
Modified: trunk/examples/hellbound/src/stories/com/sirenian/hellbound/givens/HellboundGiven.java (616 => 617)
--- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/givens/HellboundGiven.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/hellbound/src/stories/com/sirenian/hellbound/givens/HellboundGiven.java 2006-12-06 15:57:24 UTC (rev 617) @@ -3,7 +3,7 @@ import com.sirenian.hellbound.stories.Idler; import com.sirenian.hellbound.util.Logger; -import jbehave.core.story.domain.GivenUsingMiniMock; +import jbehave.core.minimock.story.domain.GivenUsingMiniMock; import jbehave.core.story.domain.World; public abstract class HellboundGiven extends GivenUsingMiniMock {
Modified: trunk/examples/hellbound/src/stories/com/sirenian/hellbound/outcomes/HellboundOutcome.java (616 => 617)
--- trunk/examples/hellbound/src/stories/com/sirenian/hellbound/outcomes/HellboundOutcome.java 2006-12-06 09:31:07 UTC (rev 616) +++ trunk/examples/hellbound/src/stories/com/sirenian/hellbound/outcomes/HellboundOutcome.java 2006-12-06 15:57:24 UTC (rev 617) @@ -2,8 +2,8 @@ import java.awt.Color; +import jbehave.core.minimock.story.domain.OutcomeUsingMiniMock; import jbehave.core.mock.Matcher; -import jbehave.core.story.domain.OutcomeUsingMiniMock; import jbehave.core.story.domain.World; import com.sirenian.hellbound.Hellbound;
To unsubscribe from this list please visit:
