Inheritance: GrammarStructure
コード例 #1
0
ファイル: ResultsWriter.cs プロジェクト: wbinford/storyteller
 void ITestStream.Do(DoGrammarStructure structure, IStep step)
 {
     _paragraphResults.ForExceptionText(text =>
     {
         _document.Add(new ExceptionTag(text));
     });
 }
コード例 #2
0
ファイル: UsageGraph.cs プロジェクト: MotherGoose/storyteller
 void ITestStream.Do(DoGrammarStructure structure, IStep step)
 {
 }
コード例 #3
0
ファイル: FixtureTag.cs プロジェクト: wbinford/storyteller
 void IGrammarVisitor.DoGrammar(DoGrammarStructure grammar, IStep step)
 {
 }
コード例 #4
0
        public void write_the_result_with_no_error_should_do_nothing()
        {
            Assert.Fail("Redo in new world order");

            var structure = new DoGrammarStructure();
        }
コード例 #5
0
 public void Do(DoGrammarStructure structure, IStep step)
 {
     // no-op
 }
コード例 #6
0
 public void Do(DoGrammarStructure structure, IStep step)
 {
     // do nothing
 }
コード例 #7
0
 void IGrammarVisitor.DoGrammar(DoGrammarStructure grammar, IStep step)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
ファイル: FixtureTag.cs プロジェクト: adymitruk/storyteller
 void IGrammarVisitor.DoGrammar(DoGrammarStructure grammar, IStep step)
 {
     grammarTag.Render(false);
 }
コード例 #9
0
ファイル: TestParser.cs プロジェクト: wbinford/storyteller
 void IGrammarVisitor.DoGrammar(DoGrammarStructure grammar, IStep step)
 {
     _stream.Do(grammar, step);
 }
コード例 #10
0
ファイル: TestParser.cs プロジェクト: larsw/storyteller
 void IGrammarVisitor.DoGrammar(DoGrammarStructure grammar, IStep step)
 {
     _stream.Do(grammar, step);
 }