1

複数の入力/期待される出力で機能をテストするにはどうすればよいですか?

これは本当に簡単な例です:

scenario "Can add two numbers", {
    given "Two numbers", {
        num1 = 2
        num2 = 3
    }

    when "I trigger add.", {
        result = add(num1,num2)
    }

    then "The result should be correct.", {
        result.shouldBe 5
    }
}

これを複数の値でテストしたい、と言うadd(4,8).shouldBe 12, ....

これを行うためのベストプラクティスは何ですか? 他の BDD フレームワークでは、これを実装するテーブルのような構造を見てきましたが、EasyB ではそのようなものを見つけることができません。これをカバーするために複数のシナリオを作成する必要がありますか (シナリオ名に (1)、(2) を追加)、または入力と予想される出力を配列に入れ、これが等しいかどうかを確認する必要がありますか? 後者のアプローチを使用する場合、どうすれば意味のある失敗を得ることができますか?

4

1 に答える 1

1

where/example 句を使用し ます http://code.google.com/p/easyb/wiki/ChangesInEasyb098

package org.easyb.where

/*
Example tests a map at the story level
 */

numberArray = [12, 8, 20, 199]

where "we are using sample data at a global level", [number:numberArray]

before "Before we start running the examples", {
  given "an initial value for counters", {
    println "initial"
    whenCount = 0
    thenCount = 0
    numberTotal = 0
  }
}

scenario "Number is #number and multiplier is #multiplier and total is #{number * multiplier}", {
  when "we multiply #number by #multiplier", {
    whenCount ++
    num = number * multiplier
  }
  then "our calculation (#num) should equal #{number * multiplier}", {
    num.shouldBeGreaterThan 0
    numberTotal += num
    thenCount ++
  }
  where "Multipliers should be", {
    multiplier = [1,2,3]
  }
}


after "should be true after running example data", {
  then "we should have set totals", {
    whenCount.shouldBe 12
    thenCount.shouldBe 12
    num = 0
    numberArray.each { n ->
      num = num + (n + (2*n) + (3*n))
    }

    num.shouldBe numberTotal
  }
}
于 2012-07-11T06:44:04.680 に答える