Skip to content

Commit

Permalink
Fixed problem when running tests with xunit (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilleBo authored Apr 10, 2020
1 parent 8f4a6d8 commit d474c53
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Testura.Mutation.Console/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.8.0.1")]
[assembly: AssemblyFileVersion("1.8.0.1")]
[assembly: AssemblyVersion("1.8.2.0")]
[assembly: AssemblyFileVersion("1.8.2.0")]
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4Net.config", Watch = true)]
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Task<TestSuiteResult> RunTestWithRetries(string dllPath, int retries)
ReadToEnd(command.StandardOutput, cancellationToken, out var message);

var resultFile = GetResultFile(directoryPath);
var success = !string.IsNullOrEmpty(resultFile) && (string.IsNullOrEmpty(error) || error == "Test Run Failed.");
var success = !string.IsNullOrEmpty(resultFile) && (string.IsNullOrEmpty(error) || error.Contains("Test Run Failed"));

if (!success)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Testura.Mutation.VsExtension/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.10.0.0")]
[assembly: AssemblyFileVersion("1.10.0.0")]
[assembly: AssemblyVersion("1.10.1.0")]
[assembly: AssemblyFileVersion("1.10.1.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Testura.MutationVsExtension.71e8249a-b76c-4035-af2b-0304cbf33623" Version="1.10.0" Language="en-US" Publisher="Mille Boström" />
<Identity Id="Testura.MutationVsExtension.71e8249a-b76c-4035-af2b-0304cbf33623" Version="1.10.1" Language="en-US" Publisher="Mille Boström" />
<DisplayName>Testura.Mutation</DisplayName>
<Description xml:space="preserve">Testura is a mutation testing extension for visual studio that verifies the quality of your unit tests by injecting different mutations in your production code and then checks whether your unit tests catch them.</Description>
<MoreInfo>https://github.com/Testura/Testura.Mutation</MoreInfo>
Expand Down

0 comments on commit d474c53

Please sign in to comment.