From 6202c49d7af0ef7b9d18ed96216dff79dd8bca4e Mon Sep 17 00:00:00 2001 From: "Geramy L. Loveless" Date: Thu, 23 Jul 2015 07:38:42 -0700 Subject: [PATCH] Basic Stubbing Finished. Did some basic stubbing of the methods and now going to start implementing the meat. --- Tests/Cosmos.TestRunner.UI/MainWindow.xaml | 4 +- .../OutputHandlerBase.UI.cs | 71 +++++++++++++++++++ 2 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs diff --git a/Tests/Cosmos.TestRunner.UI/MainWindow.xaml b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml index 261b83896..28198a8fd 100644 --- a/Tests/Cosmos.TestRunner.UI/MainWindow.xaml +++ b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml @@ -1,8 +1,8 @@  + Title="Test Runner" Height="350" Width="525"> - + diff --git a/Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs b/Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs new file mode 100644 index 000000000..9480f2831 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs @@ -0,0 +1,71 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Cosmos.TestRunner.Core; + +namespace Cosmos.TestRunner.UI +{ + public partial class MainWindow : OutputHandlerBase + { + public override void OnExecuteKernelStart(string assemblyName) + { + + } + public override void OnExecuteKernelEnd(string assemblyName) + { + + } + public override void OnLogDebugMessage(string message) + { + + } + public override void OnLogMessage(string message) + { + + } + public override void OnLogError(string message) + { + + } + public override void OnExecutionStart() + { + + } + public override void OnExecutionEnd() + { + + } + public override void OnUnhandledException(Exception exception) + { + + } + public override void OnTaskStart(string taskName) + { + + } + public override void OnTaskEnd(string taskName) + { + + } + public override void OnSetKernelTestResult(bool succeeded, string message) + { + + } + + public override void OnRunConfigurationStart(RunConfiguration configuration) + { + + } + public override void OnRunConfigurationEnd(RunConfiguration configuration) + { + + } + + public override void OnSetKernelSucceededAssertionsCount(int succeededAssertions) + { + + } + } +}