mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 10:11:31 +00:00
Basic Stubbing Finished.
Did some basic stubbing of the methods and now going to start implementing the meat.
This commit is contained in:
parent
30bc48aa72
commit
6202c49d7a
2 changed files with 73 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
71
Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs
Normal file
71
Tests/Cosmos.TestRunner.UI/OutputHandlerBase.UI.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue