Skip to content

Instantly share code, notes, and snippets.

View PaulUpson's full-sized avatar

Paul Upson PaulUpson

  • Software Architect @ NICE Ltd
  • Southampton, UK
View GitHub Profile
@briandonahue
briandonahue / gregyoung.textile
Created September 8, 2011 21:14
Greg Young's CQRS Class - Random Notes

CQRS – Greg Young – 8/26/2011

Insurance Domain – Value to Business Model (S-M-L)

  • Claims – L
  • Sales – S-M
  • Accounting – S
  • Actuarials – S
  • Intranet – S
  • Public Web – M-L
@yevhen
yevhen / SpecificationFixture.cs
Created July 27, 2011 15:26
NUnit support for Greg Young's Simple.Testing "framework"
[TestFixture]
public class SpecificationFixture
{
[Test, TestCaseSource("GetSpecificationTestCases")]
public void Verify(SpecificationToRun spec)
{
var runner = new SpecificationRunner();
RunResult result = runner.RunSpecifciation(spec);
if (result.Passed)