Skip to content

Instantly share code, notes, and snippets.

@andersivner
andersivner / SoundexTests.cs
Created November 6, 2012 13:15
Test cases for the Soundex TDD exercise. To be added (uncommented) one-by-one from the top. This is the c# version, adapted from https://github.com/jlangr/soundex.
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Soundex.Tests
{
[TestClass]
public class SoundexTests