Basic Stubbing Finished.

Did some basic stubbing of the methods and now going to start
implementing the meat.
This commit is contained in:
Geramy L. Loveless 2015-07-23 07:38:42 -07:00
parent 30bc48aa72
commit 6202c49d7a
2 changed files with 73 additions and 2 deletions

View file

@ -1,8 +1,8 @@
<Window x:Class="Cosmos.TestRunner.UI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
Title="Test Runner" Height="350" Width="525">
<Grid>
</Grid>
</Window>

View file

@ -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)
{
}
}
}