Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open source projects using BDD testing?

Tags:

java

c#

vb.net

bdd

My team is interesting in understanding BDD better.

Are there open source .NET/Java projects which use behavior driven development (BDD)?

I would like to focus my attention on static language examples.

like image 948
Michael Rosario Avatar asked Nov 14 '22 02:11

Michael Rosario


1 Answers

Cellz which is a functional Excel-like spreadsheet application for Silverlight has some BDD tests written using TickSpec. Both projects are using F# to some point, but you can probably learn something from them even if you're not an F# developer (TickSpec can be used from C# too).

Phil Trelford who is the author of both of these projects also did a talk about BDD and TickSpec at F#unctional Londoners user group. You can watch the recording here.

like image 71
Tomas Petricek Avatar answered Dec 11 '22 07:12

Tomas Petricek