Inheritance: ICallable, IConeAttributeProvider
コード例 #1
0
ファイル: ConeSuiteStub.cs プロジェクト: drunkcod/Cone
 IRowSuite IConeSuite.AddRowSuite(ConeMethodThunk thunk, string suiteName)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: ConePadSuite.cs プロジェクト: kitofr/Cone
 public ConePadRowSuite(ConePadSuite parent, ConeMethodThunk thunk)
 {
     this.parent = parent;
     this.thunk = thunk;
 }
コード例 #3
0
ファイル: ConeTestMethodSink.cs プロジェクト: drunkcod/Cone
 protected abstract IRowSuite CreateRowSuite(ConeMethodThunk method, string context);
コード例 #4
0
ファイル: ConePadSuite.cs プロジェクト: kitofr/Cone
 void AddTest(ITestName displayName, ConeMethodThunk thunk, object[] args, ExpectedTestResult result)
 {
     tests.Add(NewTest(displayName, thunk, args, result));
 }
コード例 #5
0
ファイル: ConePadSuite.cs プロジェクト: kitofr/Cone
 IConeTest NewTest(ITestName displayName, ConeMethodThunk thunk, object[] args, ExpectedTestResult result)
 {
     return new ConePadTest(displayName, NewTestMethod(fixture, thunk.Method, result), args, thunk);
 }
コード例 #6
0
ファイル: ConePadSuite.cs プロジェクト: kitofr/Cone
 public IRowSuite AddRowSuite(ConeMethodThunk thunk, string suiteName)
 {
     return new ConePadRowSuite(this, thunk) {
         Name = Name + "." + suiteName
     };
 }
コード例 #7
0
ファイル: AddinSuite.cs プロジェクト: kitofr/Cone
 public IRowSuite AddRowSuite(ConeMethodThunk thunk, string suiteName)
 {
     var newSuite = new AddinRowSuite(thunk, this, testExecutor, suiteName);
     AddWithAttributes(thunk, newSuite);
     return newSuite;
 }
コード例 #8
0
ファイル: AddinSuite.cs プロジェクト: kitofr/Cone
 void AddTestMethod(ConeMethodThunk thunk)
 {
     AddWithAttributes(thunk, new AddinTestMethod(thunk, this, testExecutor, thunk.NameFor(null)));
 }
コード例 #9
0
ファイル: ConePadSuite.cs プロジェクト: drunkcod/Cone
 protected override IRowSuite CreateRowSuite(ConeMethodThunk method, string suiteName)
 {
     return suite.AddRowSuite(method, suiteName);
 }
コード例 #10
0
ファイル: AddinTestMethod.cs プロジェクト: kitofr/Cone
 public AddinTestMethod(ConeMethodThunk thunk, Test suite, TestExecutor testExecutor, string name)
     : base(suite, testExecutor, name)
 {
     this.thunk = thunk;
 }