Click here to Skip to main content
15,886,798 members
Articles / Programming Languages / C#

Introduction to BDD using StoryQ

Rate me:
Please Sign up or sign in to vote.
4.50/5 (8 votes)
10 Jun 2010CPOL3 min read 32.8K   165   25  
Getting started with BDD in an easy way
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace George2giga.BDD.Library
{
    public interface ISecurityProvider
    {
        bool CheckRegistration(string username, string password);
    }

    public class SecurityProvider : ISecurityProvider
    {
        #region ISecurityProvider Members

        public bool CheckRegistration(string username, string password)
        {
            throw new NotImplementedException();
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Minalabs
United Kingdom United Kingdom
Giorgio Minardi is a .Net consultant actually working in UK after diffent years spent in Italy working on enteprise clients.

Comments and Discussions