Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/TestCaseViewModel.cs
T
2015-08-08 21:56:08 -07:00

24 lines
510 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;
}
}