Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/TestCaseViewModel.cs
T
2015-08-08 22:31:03 -07:00

26 lines
563 B
C#

using GalaSoft.MvvmLight;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit.Abstractions;
namespace xunit.runner.wpf.ViewModel
{
public class TestCaseViewModel : ViewModelBase
{
private readonly ITestCase testCase;
public TestCaseViewModel(ITestCase testCase)
{
this.testCase = testCase;
}
public string DisplayName => testCase.DisplayName;
public TestState State => TestState.NotRun;
}
}