コード例 #1
0
ファイル: ThenSemanticsTests.cs プロジェクト: goeran/TinyBDD
        public void Setup()
        {
            semanticModelState = new SM.AAAMemento();
            semanticModel = new SM.AAA(semanticModelState);
            semanticModel.Act("user checkout", () => { });

            thenSemantics = new ThenSemantics(this, semanticModel);
        }
コード例 #2
0
ファイル: ScenarioClass.cs プロジェクト: goeran/TinyBDD
 public ThenSemantics Then(ThenSemantics semantics)
 {
     return semantics;
 }