3

Canopy API を使用して「コンテキスト」テストをフォーマットする方法に困惑しています。

次の Web サイトに例がリストされていますが、次のコードでプログラムをビルドできません。変更なしで、他のインデントを試しました。

参照: http://lefthandedgoat.github.io/canopy/testing.html

context: "Change text in the fields"
once(fun _ -> contains "98402" (read "#ZipCodeID"))
before(fun _ -> "#FirstNameID" << "Paul")
after(fun _ -> "#CityID" == "Tacoma")
lastly(fun _ -> "#StateID" == "WA")

これにより、次のエラーが発生します。

Error   1   Incomplete structured construct at or before this point in lambda expression. Expected incomplete structured construct at or before this point or other token.
4

1 に答える 1

2

@Eugene Fotinは、構文エラー「:」を指摘しました。これを修正したところ、ビルド エラーはなくなりました。

于 2014-06-07T01:02:46.273 に答える