예제 #1
0
파일: Scenario.cs 프로젝트: goeran/TinyBDD
 public Scenario(Object test)
 {
     this.test = test;
     semanticModelState = new SemanticModel.AAAMemento();
     semanticModel = new SemanticModel.AAA(semanticModelState);
     semantics = new Semantics(test, semanticModel);
 }
예제 #2
0
파일: Semantics.cs 프로젝트: goeran/TinyBDD
 public Semantics(Object test, SemanticModel.AAA semanticModel)
 {
     this.test = test;
     this.semanticModel = semanticModel;
     metadataParser = new TestMetadataParser(test);
 }
예제 #3
0
 public AAASpecialCase(SemanticModel.AAA semanticModel)
 {
     this.semanticModel = semanticModel;
 }
예제 #4
0
파일: AAA.cs 프로젝트: goeran/TinyBDD
 public AAA()
 {
     semanticModelMemento = new SemanticModel.AAAMemento();
     semanticModel = new SemanticModel.AAA(semanticModelMemento);
     semantics = new Semantics(semanticModel);
 }
예제 #5
0
 public ScenarioSpecialCase(SemanticModel.AAA semanticModel, SemanticModel.AAAMemento state)
 {
     this.semanticModel = semanticModel;
     State = state;
     specDocumentGenerator = new TextSpecGenerator();
 }
예제 #6
0
파일: Semantics.cs 프로젝트: goeran/TinyBDD
 public Semantics(SemanticModel.AAA semanticModel)
 {
     this.semanticModel = semanticModel;
 }