コード例 #1
0
 public TestMethodPublic(IGherkinKeyword scenario)
     : base(scenario.Name.ToSafeSyntax(), "public")
 {
 }
コード例 #2
0
 public ScenarioMethods(IGherkinKeyword context)
 {
     this.Conceptual     = TestMethod.Public(context);
     this.Specification  = TestMethod.Partial(context);
     this.Implementation = TestMethod.Where(context);
 }
コード例 #3
0
ファイル: TestMethod.cs プロジェクト: erraticmotion/spock-net
 public static IMethod Where(IGherkinKeyword context)
 {
     return(new TestMethodWhere(new TestMethodPublic(context)));
 }