added execution time
This commit is contained in:
@@ -304,6 +304,7 @@
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="20" />
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Image
|
||||
@@ -316,6 +317,11 @@
|
||||
Grid.Column="1"
|
||||
VerticalAlignment="Center"
|
||||
Text="{Binding DisplayName}" />
|
||||
<TextBlock
|
||||
Grid.Column="2"
|
||||
VerticalAlignment="Center"
|
||||
Margin="10,0,2,0"
|
||||
Text="{Binding ExecutionTime}" />
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
|
||||
@@ -160,7 +160,11 @@ namespace Xunit.Runner.Wpf.ViewModel
|
||||
CurrentRunState = TestState.NotRun;
|
||||
|
||||
foreach (var test in testsToRun)
|
||||
{
|
||||
test.State = TestState.NotRun;
|
||||
test.ExecutionTime = "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
var taskList = new List<Task>();
|
||||
|
||||
Reference in New Issue
Block a user