main
 1namespace test
 2{
 3  using Machine.Specifications;
 4  using domain;
 5
 6  public class MCFSpecs
 7  {
 8    Establish context = ()=>
 9    {
10      sut = new MCF();
11    };
12
13    static MCF sut;
14
15    public class when_converting_1_BOED_to_MCF
16    {
17      It should_return_6_BOED=()=>
18      {
19        result.ShouldEqual(6m);
20      };
21
22      Because of = ()=>
23      {
24        result = sut.Convert(1m, new BOED());
25      };
26
27      static decimal result;
28    }
29  }
30}