Cucumbers and Silverlight 4

So I'm wondering if anyone is familiar or if something worked with cucumber and Silverlight. I currently have a template directory and an assembly file that will create RSpec tests using Bacon (lightweight RSpec). I studied SpecFlow and Cuke2Nuke, but pretty much everything I've seen works with generic .net code, not silverlight code.

Thanks.

+4
source share
1 answer

SpecFlow is an open source project for creating BDD with .NET. Starting with version 3.1.2, it also supports Silverlight. You can check the sample at: http://github.com/techtalk/SpecFlow-Examples/tree/master/BowlingKata/BowlingKata-Silverlight-MsTest/

SpecFlow uses the plain text definition format (Gherkin is the same format as the cucumber) and generates unit tests from it (in the case of Silverlight, MsTest is supported).

You can also check out the SpecFlow Silvelight integration wiki: https://github.com/techtalk/SpecFlow/wiki/silverlight-support

+4
source

Source: https://habr.com/ru/post/1307733/


All Articles