~adam-rpconnelly/nunit-3.0/bug-483845

« back to all changes in this revision

Viewing changes to src/framework/Api/TestController.cs

  • Committer: Charlie Poole
  • Date: 2010-01-08 17:21:03 UTC
  • Revision ID: charlie@nunit.com-20100108172103-o065jps8sbft4hhq
Further simplification of API and internals: Removing TestInfo and NUnitFramework classes, eliminating all references to the framework from the test runner and using xml to communicate results back to the runner.

Show diffs side-by-side

added added

removed removed

Lines of Context:
237
237
            public RunTestsAction(TestController controller, AsyncCallback callback) 
238
238
                : base(controller, callback)
239
239
            {
240
 
                ReportResult(Runner.Run(this, TestFilter.Empty), true);
 
240
                ReportResult(Runner.Run(this, TestFilter.Empty).ToXml(), true);
241
241
            }
242
242
 
243
243
            /// <summary>