1

I would like to use Cucumber from the .NET world and SharpDevelop seems like a good choice, but I'm not finding a good example of how to do it

Dinis Cruz
  • 4,161
  • 2
  • 31
  • 49

2 Answers2

3

Prehaps this doesnt answer you question but we use SpecFlow for BDD which is absolutally awesome and integrates into visual studio. If you havent picked a BDD framework i would highly recommend it.

http://specflow.org/

undefined
  • 33,537
  • 22
  • 129
  • 198
  • My issue is that I want to share the tests with an environment that is already using Cucumber, so I want to be able to integrate with it – Dinis Cruz Jan 18 '12 at 01:04
  • Specflow uses the same parser as cucumber so the definition language is pretty much identical. – undefined Jan 18 '12 at 04:45
3

SpecFlow is an open source project that you can use to do BDD on .NET. It aims to be compatible with Gherkin which is the language used by Cucumber.

SpecFlow supports both Visual Studio and SharpDevelop. I looked at the integration with SharpDevelop and put together a post on how to use SharpDevelop with SpecFlow.

Community
  • 1
  • 1
Matt Ward
  • 47,057
  • 5
  • 93
  • 94
  • Thanks, and I might end up going with SpecFlow (article linked looks good btw). I will keep this open a bit more to see if I get some more help on the Cucumber side of things – Dinis Cruz Jan 18 '12 at 01:06