Code Monkey home page Code Monkey logo

Comments (2)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
This works but fj dependency should not be visible at this level:

import com.googlecode.instinct.integrate.junit4.InstinctRunner
import com.googlecode.instinct.marker.annotate.*
import org.junit.runner.RunWith

@Grapes([
    @Grab(group='com.googlecode.instinct', module='instinct-core', version='0.1.9'),
    @Grab(group='org.functionaljava', module='fj', version='2.19')
])
@RunWith(InstinctRunner.class)
public final class AWinningGame {
    @Subject private game
    Dice winningDice

    @BeforeSpecification
    void setUp() {
        winningDice = new RiggedDice(value: 6)
        game = new Game(d1: winningDice, d2: winningDice)
    }

    @Specification
    void mustWinWhenBothDiceReturnSix() {
        println game.play() == 'win'
    }
}

interface Dice { def roll() }

class RiggedDice implements Dice {
    def value
    def roll() {
        value
    }
}

class Game {
    def d1, d2
    def play() {
        def result = (d1.roll() == 6 & d2.roll() == 6)
        result ? "win" : "lose"
    }
}

Original comment by [email protected] on 18 May 2009 at 3:29

from instinct.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 29, 2024
instinct-core 0.1.9 did not declare it's dependency on FJ.
instinct-core 0.2.0 does, but the repository is no longer valid.

Original comment by [email protected] on 20 Oct 2009 at 10:06

from instinct.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.