コード例 #1
0
ファイル: Step.cs プロジェクト: ItsVeryWindy/Mono-Cucumber
 public Step(IList<Placeholder> placeholders, Table table, DocString docString, string name, string file, int line, int column)
     : base(name, file, line, column)
 {
     Placeholders = new ReadOnlyCollection<Placeholder> (placeholders);
     Table = table;
     DocString = docString;
 }
コード例 #2
0
 public Examples(Table table, IList<string> tags, string file, int line, int column)
     : base(tags, "Examples", file, line, column)
 {
     Table = table;
 }