From ed15007da677fa15d5e476fa8b7fdda8e2f07838 Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 5 Feb 2026 17:28:40 +0100 Subject: [PATCH 1/6] Remove tests --- .../JUnitReaderTests.cs | 128 ------------------ 1 file changed, 128 deletions(-) delete mode 100644 backend/TestsHubUploadEndpoint.Tests/JUnitReaderTests.cs diff --git a/backend/TestsHubUploadEndpoint.Tests/JUnitReaderTests.cs b/backend/TestsHubUploadEndpoint.Tests/JUnitReaderTests.cs deleted file mode 100644 index aceb663..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/JUnitReaderTests.cs +++ /dev/null @@ -1,128 +0,0 @@ -using Moq; -using NUnit.Framework; -using Shouldly; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using TestsHubUploadEndpoint; -using TestsHubUploadEndpoint.ReportModel; -using TestsHubUploadEndpoint.Tests; - -namespace Tests -{ - public class JUnitReaderTests - { - JUnitReader _reader; - List _testCasesReported; - TestRun _testRunReported; - - [SetUp] - public void Setup() - { - var dataLoaderMock = new Mock(); - _testRunReported = new TestRun(); - _testCasesReported = new List(); - dataLoaderMock.Setup(s => s.Add(It.IsAny(), It.IsAny>())) - .Callback>((t, c) => - { - _testRunReported = t; - _testCasesReported = c.ToList(); - }); - - - _reader = new JUnitReader(dataLoaderMock.Object); - } - - [Test] - public void Test_Read() - { - // Arrange - var xmlReader = TestData.GetTestReport("junit", "MinimalJUnit.xml"); - - // Act - Task.WaitAll(_reader.Read(xmlReader, "tr1", "develop", "")); - - // Assert - _testCasesReported.Count.ShouldBe(2); - - var case1 = _testCasesReported.First(); - case1.Name.ShouldBe("PassedTest"); - case1.ClassName.ShouldBe("aspnetappDependency.Tests.UnitTest1"); - case1.Status.ShouldBe("passed"); - case1.Time.ShouldBe(0.0000749m); - case1.TestSuite.Name.ShouldBe("aspnetappDependency.Tests.UnitTest1"); - _testRunReported.TestCasesCount.ShouldBe(2); - _testCasesReported.Select(t => t.TestSuite.Name).Distinct().Count().ShouldBe(1); - } - - [Test] - public void Test_ReadFileWithFailure() - { - // Arrange - var xmlReader = TestData.GetTestReport("junit", "failure.xml"); - - // Act - Task.WaitAll(_reader.Read(xmlReader, "tr1", "develop", "")); - - // Assert - var faileDetstOutput = _testCasesReported - .Single(t => t.Status.Equals("failed", System.StringComparison.OrdinalIgnoreCase)) - .TestOutput; - - _testCasesReported.ShouldSatisfyAllConditions( - () => _testCasesReported.Count.ShouldBe(7), - () => _testCasesReported - .Count(t => t.Status.Equals("failed", System.StringComparison.OrdinalIgnoreCase)) - .ShouldBe(1), - () => faileDetstOutput.ShouldContain("error creating cluster"), - () => faileDetstOutput.ShouldContain("\nSecond string") - ); - } - - [Test] - public void Test_ReadFileWithFailureAndSkip() - { - // Arrange - var xmlReader = TestData.GetTestReport("junit", "FailedAndSkipped.xml"); - - // Act - Task.WaitAll(_reader.Read(xmlReader, "tr1", "develop", "")); - - // Assert - var faileDetstOutput = _testCasesReported - .Single(t => t.Status.Equals("failed", System.StringComparison.OrdinalIgnoreCase)) - .TestOutput; - - _testCasesReported.ShouldSatisfyAllConditions( - () => _testCasesReported.Count.ShouldBe(3), - () => _testCasesReported - .Count(t => t.Status.Equals("failed", System.StringComparison.OrdinalIgnoreCase)) - .ShouldBe(1), - () => _testCasesReported - .Count(t => t.Status.Equals("passed", System.StringComparison.OrdinalIgnoreCase)) - .ShouldBe(2) - ); - } - - [Test] - public void Test_ReadFileWithCoupleOfTestSuites() - { - // Arrange - var xmlReader = TestData.GetTestReport("junit", "redundant-suite-issue.xml"); - - // Act - Task.WaitAll(_reader.Read(xmlReader, "tr1", "develop", "")); - - // Assert - var d = _testCasesReported.Select(t => t.TestSuite.Name).Distinct(); - foreach (var v in d) - { - System.Diagnostics.Debug.WriteLine(v); - } - - _testCasesReported.ShouldSatisfyAllConditions( - () => _testCasesReported.Count.ShouldBe(158), - () => d.Count().ShouldBe(18)); - } - } -} \ No newline at end of file From 81549a0c8d636f740dfc72175b54dd80bee96449 Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 5 Feb 2026 17:34:04 +0100 Subject: [PATCH 2/6] Implement feature X to enhance user experience and optimize performance --- .../coverage/cobertura/huge-cobertura.xml | 75367 ---------------- 1 file changed, 75367 deletions(-) delete mode 100644 backend/TestsHubUploadEndpoint.Tests/TestData/coverage/cobertura/huge-cobertura.xml diff --git a/backend/TestsHubUploadEndpoint.Tests/TestData/coverage/cobertura/huge-cobertura.xml b/backend/TestsHubUploadEndpoint.Tests/TestData/coverage/cobertura/huge-cobertura.xml deleted file mode 100644 index 9126099..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/TestData/coverage/cobertura/huge-cobertura.xml +++ /dev/null @@ -1,75367 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From e54819e72d5192822b29d70be2ae60707b21744b Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 5 Feb 2026 17:36:03 +0100 Subject: [PATCH 3/6] Refactor code structure for improved readability and maintainability --- .../Frontend-JenkinsProcessed.xml | 6064 ----- .../test-reports/junit/HugeNumberOfTests.xml | 18964 ---------------- 2 files changed, 25028 deletions(-) delete mode 100644 backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/Frontend-JenkinsProcessed.xml delete mode 100644 backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/HugeNumberOfTests.xml diff --git a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/Frontend-JenkinsProcessed.xml b/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/Frontend-JenkinsProcessed.xml deleted file mode 100644 index 140cace..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/Frontend-JenkinsProcessed.xml +++ /dev/null @@ -1,6064 +0,0 @@ -192.93585false0190310ImportUtils.Tests.Models.ImportRunnerTest0.2527860ImportRunner_Always_DisposedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.19737420DescParagraphLinefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.00670980DescParagraphfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.03168520DescSectionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.02703180HelpfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.00378250HelpsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.RevsetHelpTests+RevsetHelpTests0.00288270RevsetParserfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.05883320SingleWordfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.01287160SingleAxisfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00168730ColonInWordfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00348420EmptyAxisValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00173180AxisPrefixfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00290680MultipleWordfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00416140MultipleAxesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00317880AxisAndWordfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00441250BareStringLiteralfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00200480AxisStringLiteralfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00155330StringLiteralWithQuotesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00152620UnterminatedString2falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.0015480LeadingColonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00168290TrailingColonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00848050DateAxisfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.0026940DateStartOnlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00200250DateEndOnlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.0027630DateDayfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00393030DateAxisWithNumbersfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00229950DateAxisWithPhrasesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00359730FilenameLinefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00201990FilenameLinePathfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00158670ChangesetRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.00432790InvalidAxisfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Search.Tests.ParserTests+ParserTests0.04456530DateIsUtcfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.AnchorTests0.37995750Constructor_WithCodeReviewAnchorAndUrlHelper_SetsProperyValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.AnchorTests0.01804860ToCodeReviewAnchor_WithCodeReviewIdAndCodeReviewCommitId_ReturnsCodeReviewAnchorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.CommentTests0.297720Constructor_WithReviewEventAndHtmlHelperAndUrlHelper_CreatesNewInstancefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.CommentTests0.00205110Constructor_WithDeletedReviewEventAndHtmlHelperAndUrlHelper_CreatesNewInstancefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.CommentTests0.12683620SetHtmlFields_WithReviewEventAndHtmlHelper_SetsHtmlFieldsOnCommentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.CommentTests0.03316460SetHtmlFields_WithCodeReviewEventAndHtmlHelper_SetsHtmlFieldsOnCommentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.CommentTests0.00715370SetHtmlFields_WithCodeReviewEventAndHtmlHelperAndWithoutCommentHeader_SetsHtmlFieldsOnCommentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests1.38341720oPersonToGroups_Should_ExecuteCorrectlyfalsePASSED - -Debug Trace: -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 - -0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.17429330oPersons_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.03768580oGroups_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.00718180permProjectDefault_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.00699080fPublic_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.01693780Nones_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.00706290Admins_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.23556410oPersonsForRepoPermissionsModel_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.03318910oGroupsForRepoPermissionsModel_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ProjectPermissionsModelTests0.00788790permRepoDefaultForRepoPermissionsModel_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00919240CheckHeads_WhenBackendHeadIdsAndDatabaseHeadIdsAreEmpty_ReturnsGoodEmptyStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.0045510CheckHeads_WhenBackendHeadIdsIsNotEmptyButDatabaseHeadIdsIsEmpty_ReturnsBadRequiresImportStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00509370CheckHeads_WhenBackendHeadIdsAndDatabaseHeadIdsMatch_ReturnsGoodWithMatchCountMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.02046840CheckHeads_WhenDifferentIdsInBackendAndDatabase_ReturnsBadWithDistinctionMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.02746540CheckDivergence_WhenGitRevisionIdsDoesNotMatchMercurialRevisionIds_ReturnsBadDivergedStatusMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00313650CheckDivergence_WhenGitRevisionIdsMatchMercurialRevisionIds_ReturnsGoodAlternateIdsMatchfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.14466580ChecksGet_WhenRepoVcsIsBoth_ReturnsSafeStatusFunctionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00160720ChecksGet_WhenRepoVcsIsGit_ReturnsSafeStatusFunctionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00158490ChecksGet_WhenRepoVcsIsHg_ReturnsSafeStatusFunctionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00105380ChecksGet_WhenRepoVcsIsUnknown_ReturnsEmptyFunctionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00334440CheckProcessingEvents_WhenProcessingEventsIsEmpty_ReturnsGoodNotProcesingMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.12783130CheckProcessingEvents_WhenThereIsProcessingEventsLongerThan6Hours_ReturnsBadfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.RepoCheckStatusTests0.00488530CheckProcessingEvents_WhenThereIsProcessingEventsShorterThan6Hours_ReturnsGoodfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.01003960Verb_WithReviewerRecipient_ReturnsReviewMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00554110Verb_WithAuthorRecipient_ReturnsAuthorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00541290Verb_WithParticipantRecipient_ReturnsParticipiationMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00268770Verb_WithNormalUser_ReturnsSubscriptionMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00671120Header_WhenReviewTypeIsNewReview_ReturnsNewReviewMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.0021690Header_WhenReviewTypeIsChangedChangesets_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00226520Header_WhenReviewTypeIsAddedAsReviewer_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00215440Header_WhenReviewTypeIsComment_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00215210Header_WhenReviewTypeIsApproved_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00217660Header_WhenReviewTypeIsRejected_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00218150Header_WhenReviewTypeIsNeedsWork_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00252390Header_WhenReviewTypeIsRetractedApproval_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00230440Header_WhenReviewTypeIsRetractedRejection_ReturnsChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.ReviewEmailTests0.00535770Header_WhenReviewTypeIsUnknown_ThrowsArgumentOutOfRangeExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.SearchResultsTests0.00711320IsDirectory_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.SearchResultsTests0.00224470Parts_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.SearchResultsTests0.00444140Name_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.SearchResultsTests0.35474390Url_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.SearchResultsTests0.00225940ToString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHookErrorTests0.05805590Constructor_WithHookUrlResponsePayloadAndException_SetsErrorPropertiesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.01178530Constructor_WithPersonWebHookAndHtmlHelper_CreatesInstancefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.0016370IxGet_WhenCalled_ReturnsWebhookIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00257460SNameGet_WhenCalled_ReturnsWebHookNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00232130NTypeGet_WhenCalled_ReturnsWebHookTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.0030760STypeGet_WhenCalled_ReturnsWebHookTypeNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00270150HtmlIncludedGet_WhenCalledWithHookForAllRepos_ReturnsAllRepositoriesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.08300010HtmlIncludedGet_WhenCalledWithIncludedAreasToShow_ReturnsAreaListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00480960MaybeHtmlExcludedGet_WhenCalledWithExcludedAreasToShow_ReturnsAreaListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.01213790FExcludeBranchesGet_WhenCalled_ReturnsWebHookFilterExcludedBranchesPropertyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00308310SAuthTokenGet_WhenCalled_ReturnsWebHookSAuthTokenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00270730SUsernameGet_WhenCalled_ReturnsWebHookSUsernamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.0032020SPasswordGet_WhenCalled_ReturnsWebHookSPasswordfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00308840SRemoteTargetGet_WhenCalled_ReturnsWebHookSRemoteTargetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00265570SUrlGet_WhenCalled_ReturnsWebHookSUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00505180FAllReposGet_WhenCalled_ReturnsWebHookFAllReposfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00461690RgIxAreaIncludedGet_WhenCalled_ReturnsListOfAreaIdsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.ViewModels.WebHooksModelTests0.00587820RgIxAreaExcludedGet_WhenCalled_ReturnsListOfAreaIdsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.AppSubscriptionsTests0.02735630IsabcEnabledGet_WhenCalled_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.AppSubscriptionsTests0.00480870AppTrialGet_WhenCalled_ReturnsAppTrialfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.AppSubscriptionsTests0.26471870CacheAppSubscriptions_WhenHostedabc_SetsHostedAppSubscriptionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.8370AddPage_AddSamePageMultipleTimes_PanelAcceptsOncefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0840AdvanceViaKeyboard_FinishButton_ClosesFormfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0410AdvanceViaKeyboard_NextButton_SetVisibilitiesCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0710ResizeToFit_VariousPageSizes_UpdatesPageSizesAndSheetLocationfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0390SetButtonText_WizardButtons_CallsPerformClick(Finish,"finishButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0150SetButtonText_WizardButtons_CallsPerformClick(Next,"nextButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0220SetButtonText_WizardButtons_CallsPerformClick(Back,"backButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.020SetButtonText_WizardButtons_CallsPerformClick(Cancel,"cancelButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0460SetButtonText_WizardButtons_UpdatesButtonText(Finish,"finishButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.AppSubscriptionsTests0.00273050CacheAppSubscriptions_WhenNotHostedabc_SetsHostedAppSubscriptionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.AppSubscriptionsTests0.00593780CacheAppSubscriptionsLicensed_WhenCalled_SetsAppEnabledStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.ContextExtensionsTests0.0326170XSRFFormValue_WithContextAndNullNonce_ReturnsAntiForgeryTokenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.ContextExtensionsTests0.00920390abcUser_WithContext_ReturnsRequestUserfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.ContextExtensionsTests0.00132090AppUrlPrefix_WithNullHttpContext_ThrowsArgumentNullExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete120abc.Common.Tests.Utils.ContextExtensionsTests0.00AppUrlPrefix_WithoutSettingAndWithHttpContext_UsesDefaultProductNamingtrue---EMPTY---SKIPPEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DBFarmTests0.20894860GetResponse_WithUrlAndPostData_ReturnsResponseTextfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.01462040DBMaintenance_WhenMinimumAppRequirementIsMissingAndUpgradeNeeded_SyncsFromAppfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.007720VersionCacheSet_WithLong_SetsVersionCachefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.020SetButtonText_WizardButtons_UpdatesButtonText(Next,"nextButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0180SetButtonText_WizardButtons_UpdatesButtonText(Back,"backButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0130SetButtonText_WizardButtons_UpdatesButtonText(Cancel,"cancelButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0390SetNextActivePage_ValidPath_SetVisibilitiesCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0290SetWizardButtons_FinishAndNext_UpdatesFinishNextButtons(Next, Finish)falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0180SetWizardButtons_FinishAndNext_UpdatesFinishNextButtons(Next)falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0170SetWizardButtons_FinishAndNext_UpdatesFinishNextButtons(Finish)falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0190SetWizardButtons_FinishAndNext_UpdatesFinishNextButtons(Back)falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0220SetWizardButtons_WizardButtons_UpdatesButtonsVisibilities(Finish,"finishButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.13488660Upgrade_WhenHostedabc_MigratesToLatestVersionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.01374380Upgrade_WhenNotHostedabc_MigratesToLatestVersionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.00144290UpgradeNeededGet_WhenIsDbTooOldReturnsTrue_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.00159960IsDBTooOldGet_WhenDatabaseVersionIsSmallerThanConfigVersion_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.DbUpgraderTests0.00145710DBTooNewGet_WhenDatabaseVersionIsGreaterThanConfigVersion_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.abcBackendTests0.00916610RepoVcsStatus_WithRepo_ReturnsRepoVcsStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.abcBackendTests0.3823180TranslationStatus_WithRepo_ReturnsRepoTranslationStatusDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.LambdaDisposableTests9.857E-40LambdaDisposable_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.LambdaDisposableTests5.916E-40LambdaDisposable_Dispose_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0190SetWizardButtons_WizardButtons_UpdatesButtonsVisibilities(Back,"backButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0160SetWizardButtons_WizardButtons_UpdatesButtonsVisibilities(Cancel,"cancelButton")falsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0Wizard.UI.Tests.WizardPageTest0.0360WizardSheetShown_WithPages_SelectsFirstPagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.MultiPartUtilTests1.90720370PostMultiPart_WithUrlFormDataAndFiles_CreatesRequestAndPostsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00178840AcceptGet_WhenAcceptSet_ReturnsSetValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00100480ContentTypeGet_WhenContentTypeSet_ReturnsSetValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00109250MethodGet_WhenMethodSet_ReturnsSetValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests8.793E-40ContentLengtheGet_WhenContentLengthSet_ReturnsSetValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests9.38E-40ChunkedTransferEncodingGet_WhenChunkedTransferEncodingSet_ReturnsSetValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.01301010Write_WithByteArray_WritesToStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00273270GetResponse_WhenCalled_ClosesRequestAndReturnsResponsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests8.543E-40GetStream_WhenCalled_ReturnsStreamFieldfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00499890Dispose_WhenCalled_DisposesStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.03112910EnsureRequestStarted_WhenCalled_SetsClientAndStreamFieldsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00226480DisambiguateHeaders_WhenCalled_SetsHeaderDictionaryFromFieldsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests8.899E-40HeaderString_WithKeyAndValueString_ReturnsConcatenatedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00161480WriteLine_WithString_AppendsNewlineCharAndWritesToStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.OverlySimplisticHttpRequestTests0.00716840Write_WithString_ConvertsStringAsciiBytesAndWritesToStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.02066780GetUrl_NoHttContext_ThrowsInvalidOperationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.00135340GetUrl_NoHttRequest_ThrowsInvalidOperationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.02624910GetUrl_WithHttRequestAndPreferrenceInRedis_ShouldReturnPreferredHostnameInUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.00119270GetUrl_WithHttRequestAndWithoutPreferrenceInRedis_ShouldCallGetUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.00158670CacheFrom_WithNullRequest_ThrowsArgumentNullExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.PreferredAppDomainUtilTests0.89515880CacheFrom_WithUrlReferer_SetCacheItemWithDefaultsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.TrelloUtilTests0.12734770FixTrelloAttachmentsFor_WithTokenRepoChangesetAndUrlHelper_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.TrelloUtilTests0.01463690AttachCard_WithRepoChangesetAndCardId_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.TrelloUtilTests0.00244330DetachCard_WithRepoChangesetAndCardId_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.WebHookCampfireUtilTests0.07301160SerializePayload_WithWebhookPayload_ReturnsSerializedPayloadfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.WebHookCampfireUtilTests0.07164520GetRooms_WhenCalled_ReturnsRoomDictionaryForAccountfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.WebHookGithubUtilTests0.16767870SerializePayload_WithPayload_ReturnsPayloadJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.WebHookLighthouseUtilTests0.05364780SerializePayload_WithWebhookPayload_ReturnsSerializedPayloadfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.JsonConverters.WebHookPayloadConverterTests0.03488590WriteJson_WithWriterObjectAndSerializer_WritesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.JsonConverters.WebHookPayloadConverterTests0.00841990WriteJsonRepository_WithWriterAndActor_WritesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.JsonConverters.WebHookPayloadConverterTests0.01533680WriteJsonChangeset_WithWriterRepositoryAndChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.0125190InitializeHostedSettings_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00691820StaticDomain_IsReleaseFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00390760ConnectionString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00515560ConnectionStringInt_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00525930ConnectionStringIntInt_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00223630BackendHostOverride_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00151320IsGenerationMismatched_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00385950IsActivationRequest_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00521520RedirectToCannotFindAccountResult_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00230570RedirectToAccountDisabledResult_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00228530RedirectToUpgradingResult_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00225050RedirectToActivateResult_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00372730InjectSecurityToken_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.0052050Detach_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests0.00244690Activate_IsabcEnabledFalse_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ABTestTest2.2555820TestTrueFalsefalsePASSEDResults for 10000 runs (optimal: 5000): -false: 5007 -true: 4993 - -0abc.Tests.ABTestTest1.05327480TestThreefalsePASSEDResults for 10000 runs (optimal: 3333): -a: 3333 -b: 3373 -c: 3294 - -0abc.Tests.ABTestTest1.0619870TestTenfalsePASSEDResults for 10000 runs (optimal: 1000): -a: 1064 -h: 927 -c: 992 -j: 957 -g: 962 -i: 1050 -b: 1040 -e: 982 -f: 1028 -d: 998 - -0abc.Tests.PermissionsTests0.4594880GroupMembership_WithUncachedPersonIdList_ReturnsPersonIdPermissionIdDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.04350570GroupMembershipForPeople_WithPersonIdsAndPermissions_ReturnsPersonIdPermissionDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.02804110CalculateProjectPerm_WithNotNullParameters_ReturnsCalculatedPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.06559520LoadProjectPermissions_WithPeople_FillsProjectPermCachefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.02159520GetProjectPermissions_WithPersonAndProjectId_ReturnsPermissionDictionaryInstancefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.02058860AllGroups_WhenCalled_RetrievesAllPrivatePermissionGroupsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.00715240CalculateRepoPerm_WithNotNullParametersAndAdminPerson_ReturnsAdminPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests7.301E-40CalculateRepoPerm_WithNotNullParametersAndPermissionNone_ReturnsNonePermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests8.281E-40CalculateRepoPerm_WithNotNullParametersAndPermissionAdmin_ReturnsAdminPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.00405410CalculateRepoPerm_WithNotNullParametersAndProjectPermissionRead_ReturnsAdminPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.02473890LoadRepoPermissions_WithListOfPeople_SetsRepoPermCachefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.0519470GetRepoPermisson_WithPersonAndIxRepo_ReturnsPermissionDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.70890290DefaultRepoPerms_WhenCalled_ReturnsADictionaryOfDefaultRepoPermissionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PermissionsTests0.25073440SavePermissions_WithRepoAndRepoPerm_SavesRepoPermissionChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PersonComparerTests0.0045950Equals_WithIPersonPermInstanceWithSameixPerson_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.PersonComparerTests0.00509230GetHashCode_WithIPersonPermission_ReturnsixPersonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest1.29968170DagHistory_When_Ajax_ChangesetListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.01479940DagHistory_When_Ajax_HistoryDagPartialfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00969460DagHistory_When_HeadfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00730910DagHistory_When_HeadsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.0073870DagHistory_When_olderThanChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.0076550DagHistory_When_newerThanChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.01295440DagHistory_When_VcsGitfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00871240DagHistory_When_UnknownfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.01583060DagHistory_When_RevsetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.01804110DagHistory_When_Rev_OnefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.01057790DagHistory_When_Rev_TwofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.02509150OnException_When_IsSCMRequest_And_RepoForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.08799590OnException_When_IsSCMRequest_And_RepoWorkingStateExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.0040180OnException_When_IsSCMRequest_And_OutOfMemoryExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00985390OnException_When_abcReadOnlyModeExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00498550OnException_When_ShowCustomErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00805480OnException_When_RepoForbiddenException_And_IsAuthfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.0066310OnException_When_RepoForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00325890OnException_When_BackendExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00373180OnException_When_RepoErrorStateExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00564130OnException_When_RepoStrippingExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00423750OnException_When_RepoStillCreatingExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00349670OnException_When_FileNotFoundExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00370510OnException_When_ChangesetNotFoundExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.05751090OnException_When_TruncatedFileExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.21919030Strip_WhenValidationIsTrue_PageRedirectedToStripWaitingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.05633420Strip_WhenIsabcReadOnlyReturnsTrue_PageRedirectedToHomefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.00590980Strip_WhenVcsIsNotGitOrHg_PageRedirectedToHomefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.0179560Strip_WhenValidationIsFalse_PageRedirectedToHomefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.RepoControllerTest0.77282590Strip_WhenIsStrippableIsFalse_NotSupportedExceptionIsThrownfalsePASSED - -Debug Trace: -System.NotSupportedException: Strip is not allowed for Git changeset Dummy - at abc.Utils.abcBackend.Strip(Repo stripped, Repo original, String revision, Vcs changesetVcs) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\abcBackend.cs:line 499 - at abc.Controllers.RepoController.Strip(String changesetId, Vcs strippedVcs, Func`3 pickName, Repo strippedRepo) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\RepoController.cs:line 1949 - -0abc.Tests.HttpCorsAttributeTest0.02577090OnActionExecuting_Should_AddHeaderCrossOrigin_With_AppBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.HttpCorsAttributeTest0.01633770OnActionExecuting_Should_AddHeaderCrossOrigin_With_AppBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.HttpCorsAttributeTest8.005E-40OnActionExecuting_Should_AddHeaderCrossOrigin_With_AppBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ChangesetAssociationsRegexTests0.02906020TestBugzidRegexfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ChangesetAssociationsRegexTests0.00183960TestTrelloRegexfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ChangesetAssociationsRegexTests0.00314670TestTrelloShortRegexfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.CodeReviewTest0.14352960TestAggregateStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ESQueryTest0.39991390QueryBuilderTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ExtensionsTest0.02874630TimeSinceTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests2.62814710TestFeatureHashfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.70355190TestFeatureSwitchfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.00537330TestEarlyAdoptersfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.01231290TestLateAdoptersfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.00455990RasiesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.41613770ThresholdsAreConsistentfalsePASSEDaccount 163939 has threshold 0.0387762906120104 -account 84687 has threshold 0.907144474076839 -account 57289 has threshold 0.526387709315491 -account 0 has threshold 0.630700062874402 -account -1 has threshold 0.0341526377094334 -percent: 0 - account: 163939 enabled: False expected: False - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: False expected: False -percent: 0.05 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.1 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.15 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.2 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.25 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.3 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.35 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.4 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.45 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.5 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: False expected: False - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.55 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.6 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: False expected: False - account: -1 enabled: True expected: True -percent: 0.65 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.7 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.75 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.8 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.85 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.9 - account: 163939 enabled: True expected: True - account: 84687 enabled: False expected: False - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True -percent: 0.95 - account: 163939 enabled: True expected: True - account: 84687 enabled: True expected: True - account: 57289 enabled: True expected: True - account: 0 enabled: True expected: True - account: -1 enabled: True expected: True - -0abc.Tests.FeatureHashTests3.83273740TenPercentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FeatureHashTests0.00448820TestFeaturesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FileUtilTest0.00289160HexEncodeTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.FileUtilTest0.02674150AsUTF8StringTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.HexTest0.0021980ToBinaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.HtmlExtensionsTest1.22134650TestReplaceIdsWithLinksfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.HtmlExtensionsTest0.82328330TestReplaceUrlsWithLinksfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.JsonTest0.05206680TestDeserializeKeyWithFirstCharacterEscapedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest0.00255550CreateabcIgnorefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest8.699E-40NoRulesAcceptsAllfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest2.328E-40ParseNothingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest2.079E-40IgnoreCommentsAndBlanksfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest4.768E-40GetOneRulefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest0.00178170RegexpsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest0.01027560GlobTestsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest0.00233330SpecifySyntaxfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.abcIgnoreTest0.00751480TestAcceptanceAndRejectionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.OverlySimplisticHttpTest0.12019440TestHeadersWhenZeroLengthfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.OverlySimplisticHttpTest0.00183740TestHeadersWhenReadSplitsNewlinesUpfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ReviewEmailTest0.241750TestEmailTypesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ReviewEmailTest0.01862120TestEmailSendingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00902050TestToHexfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00425580StringUtil_CallUniqueId_ReturnRandomfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00595380StringUtil_CallHashBytes_ReturnBinaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.02914030StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00658560StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00101190StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest9.011E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.321E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.085E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.312E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.525E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.245E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.303E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.107E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.966E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00260220StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00126480StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00103110StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.481E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.214E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.147E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest7.777E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest9.211E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.744E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.205E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.779E-40StringUtil_CallNybbleValue_ReturnBytefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00206180StringUtil_CallToBinary_ReturnBinaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00234050StringUtil_CallToHex_ReturnEmptyStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00198650StringUtil_CallToHex_ReturnStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0033840StringUtil_CallSha1_ReturnBinaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.02265310StringUtil_CallGzip_ReturnByteArrayfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00335420StringUtil_CallAbsoluteUrl_MatchRegex_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0114260StringUtil_CallAbsoluteUrl_DontMatchRegex_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00375220StringUtil_CallAbsoluteUrl_DontMatchRegex_StartsWithSlash_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00245090StringUtil_CallAbsoluteUrl_NoHttpContext_ThrowsInvalidOperationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0034050StringUtil_CallAbsoluteUrlForPingback_DontMatchRegex_StartsWithSlash_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00651530StringUtil_CallAddGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00244550StringUtil_CallAddGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00125770StringUtil_CallAddGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00116860StringUtil_CallAddGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00117090StringUtil_CallAddGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.03610220StringUtil_RemoveGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00816790StringUtil_RemoveGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.01357640StringUtil_RemoveGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0095890StringUtil_RemoveGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00409420StringUtil_RemoveGetParameter_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00667020StringUtil_UrlCombine_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00242590StringUtil_UrlCombine_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00119980StringUtil_UrlCombine_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00135210StringUtil_UrlCombine_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00113080StringUtil_UrlCombine_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.01193890StringUtil_UrlSlug_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00397490StringUtil_UrlSlug_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.001950StringUtil_UrlSlug_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00184230StringUtil_UrlSlug_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00364810StringUtil_UrlSlug_ReturnUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00702150StringUtil_NextIndexedName_ReturnIndexedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0047540StringUtil_NextIndexedName_ReturnIndexedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00198830StringUtil_NextIndexedName_ReturnIndexedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00608560StringUtil_ParseIntOrDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00485460StringUtil_ParseIntOrDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest9.242E-40StringUtil_ParseIntOrDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00256310StringUtil_ParseIntOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.0013890StringUtil_ParseIntOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest8.89E-40StringUtil_ParseIntOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00791320StringUtil_ParseLongOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00590220StringUtil_ParseLongOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00160230StringUtil_ParseLongOrDefault_SetDefault_ReturnIntfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00313160StringUtil_ReplaceFirst_ReturnReplacedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00168820StringUtil_ReplaceFirst_ReturnReplacedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00116240StringUtil_ReplaceFirst_ReturnReplacedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.01207340StringUtil_ProcessFileLineForOutput__GivenLine_ReturnReplacedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00808470StringUtil_HidePassword_ReturnReplacedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00202750StringUtil_HidePassword_ReturnReplacedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00307860StringUtil_HidePassword_ReturnReplacedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00258440StringUtil_HidePassword_ReturnReplacedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00924670StringUtil_QueryDataString__GivenDictionary_ReturnParsedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.016660StringUtil_QueryDataString_GivenDictionaryWithList_ReturnParsedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.StringUtilTest0.00526820StringUtil_QueryDataString_GivenNameValueCollection_ReturnParsedStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest0.00185610StringDictionaryToStringDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest7.194E-40ObjectDictionaryToStringDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest9.928E-40AnonymousToStringDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest2.537E-40ObjectDictionaryToObjectDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest3.25E-40AnonymousToObjectDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ObjectHelperTest0.00448950StringDictionaryToObjectDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.IsVcsRequestTest0.0952810TestIsHgRequestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.IsVcsRequestTest0.00219350TestIsGitRequestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.IsVcsRequestTest0.00155380TestIsSCMRequestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.WebHookTest0.16685460GetRequest_WithAnyWebhook_WillNotAllowRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.WebHookTest0.07728080Fire_WithWebhookThatRedirects_NotifyClientAboutRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.WebHookTest2.32745740TestWebHookExternalUrlSafetyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.04091540VcsForRepo_RepoObjectIsNotNullAndAnonymousIsFalse_ReturnsObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.01860870VcsForRepo_VcsForTailIsNotNullAndAnonymousIsFalse_ReturnsObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.01452210VcsForRepo_VcsForTailIsNotNullAndAnonymousIsFalse_ReturnsObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.00149680VcsForRepo_VcsForTailIsNotNullAndAnonymousIsFalse_ReturnsObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.00199270VcsForRepo_VcsForTailIsNotNullAndAnonymousIsFalse_ReturnsObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.07465140VcsForRepo_QueryCachinggenrateError_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.04657950CanSee_PersonObjectIsNotNull_ReturnsTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.03821340CanSee_PersonObjectIsNotNull_ReturnsTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.00797020CanSee_PersonObjectIsNotNull_ReturnsTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.04932830SetVcsPreferenceForRepo_RepoObjectIsNotNull_UpdateObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.02633320SetVcsPreferenceForRepo_RepoObjectIsNotNull_UpdateObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.00862380SetVcsPreferenceForRepo_RepoObjectIsNotNull_UpdateObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.01389120SetVcsPreferenceForRepo_RepoObjectIsNotNull_UpdateObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.00995190CurrentFilter_AnonymousIsEnabled_ReturnsAnonymousFilterObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.04129880CurrentFilter_FilterExist_ReturnsFilterObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.01598010CurrentFilter_FilterExist_ReturnsFilterObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.PersonTests0.02496820CurrentFilter_FilterExist_ReturnsFilterObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.17842760AllChangesets_ChangesetsPropertyIsNull_ReturnsObejctValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests30.0469440Activate_sError_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.06572120AdditionalChangesets_ChangesetsPropertyIsNull_ReturnsObejctValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.05246260LoadChangesets_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.0458320LastActions_CodeReviewListObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.02031750CreateReview_PersonObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.13886780LoadChangesetPushes_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.1061460Reset_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.02280840SetReviewerStatus_PersonObjectIsNotNull_UpdateObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01615690SetReviewerStatus_PersonObjectIsNotNull_UpdateObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00628060SetReviewerStatus_PersonObjectIsNotNull_UpdateObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.03397090ToRepoVcs_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00885840LoadAuthors_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.02523980LoadReviewers_CodeReviewObjectIsNotNull_RetursObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.03253730RemoveChangeset_ChangesetObjectIsNotNull_ReturnsTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01407910AddComment_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01356930GetCodeReviews_ReviewsListObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00981340GetCodeReviews_ReviewsListObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00341250GetCodeReviews_ReviewsListObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.07872910LegacyStatuses_IdListIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.02031520GetReviewerStatus_PersonObejcetIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01056140GetReviewerStatus_PersonObejcetIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00940560GetReviewerStatus_PersonObejcetIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.0043760EditComment_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01822270DeleteComment_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.04338060ToRepoVcs_RepoAndChangesetObjectIsNotNull_RetutrnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.02565740ParticipationFor_abcModelsIsNull_ThrowNullRefrenceExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.00734250RemoveReviewer_PersonObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.01315080PermissionFor_ActorObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.CodeReviewTests0.05240740RecordChangedReviewers_AddedAndRemoveObjectisNotNull_AddCommentObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.09262750AssociateApp_RepoObjectIsNotNull_ReturnsTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.07159140AssociateTrello_RepoAndActorObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.03330090AssociateTrello_RepoAndActorObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.03793650AssociateTrello_RepoAndActorObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.0173260DissociateApp_ForbuzKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01437740DissociateApp_ForbuzKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.00253550DissociateApp_ForbuzKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.03233390DissociateReviews_ReviewKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.02999780DissociateReviews_ReviewKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.00197090DissociateReviews_ReviewKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01278080DissociateTrello_TrelloKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01093720DissociateTrello_TrelloKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.00151460DissociateTrello_TrelloKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.02261610ComputeAppAssociations_AppParseIsNotNull_AddFogBuzzItemsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.02820850AssociateReviews_AddRemovedParameterIsTrue_ReturnsTrueValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.12799730ComputeReviewAssociations_BugsAreAlsoReviewsPresent_AddBugsToReviewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.00376470TrelloChangesetAssociation_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.0042420CreateAssociations_RepoObjectIsNotNull_ReturnsTrueValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01763680ChangesetAssociations_ParametrizedConstructor_ComputeObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01332220ChangesetAssociations_ActorIsNotNullAndParametrizedConstructor_ComputeObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01795470ChangesetAssociations_ParametersAreNull_ComputeObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.ChangesetAssociationsTests0.01193270ChangesetAssociations_CaseChangesetAssociationIsNull_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.23694870CopyRestrictionsToDBOnSubmit_FilterObjectIsNotNull_UpdateFilterAllAreaObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.06168080UpdateAreaRestrictionsFromForm_FormCollectionObjectIsNotNull_UpdateObjectsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.03646060UpdateAreaRestrictionsFromForm_FormCollectionObjectIsNotNull_UpdateObjectsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.02487290UpdateAreaRestrictionsFromForm_FormCollectionObjectIsNotNull_UpdateObjectsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.07767170NetRepos_AllAreasIsEnabled_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.05415350HashString_ObjectIsNotNull_returnsObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterTests0.16860960Events_HaveValidLimit_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterForeignKeysTests0.03570330Filter_QExpressionIsNotNull_ReturnsUpdatedObjectValuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.FilterForeignKeysTests0.00337470ClearForeignKeysCache_ClearObject_SetNullToObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.01374030InitializeBranch_WhenCalled_ReturnsInitializesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00953740CopyParentRepoHeads_WhenCalled_ReturnsInsertsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.01524110CreatePush_WhenCalled_ReturnsPushfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.4848850IndexChangesetsStep_WhenCalled_ReturnsIntegerfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00266810IndexParentChangesets_WhenCalled_ReturnsEnqueuesTaskfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00364320BranchChangesetTags_WhenCalled_InsertsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00644050BranchChangesetPushes_WhenCalled_InsertsAndEnqueuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00283510EnqueueBranchChangesetPushes_WhenCalled_EnqueuesTaskfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoBranchingTests0.00207330AllChangesetPushesCopied_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Models.RepoTest0.00245530TestCommonVcsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.CaseCheckinResponseFormatterTests0.17679360ConvertCaseCheckin_WhenCalled_ReturnsDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.CaseCheckinResponseFormatterTests0.01452960GetRepoData_WhenCalled_ReturnsDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.CaseCheckinResponseFormatterTests0.0137420GetReviewers_WhenCalled_ReturnsDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.CaseCheckinResponseFormatterTests0.01615730HeatUpCache_WhenCalled_SetsUpCaseCheckinsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.02953480GetResponseByDelete_ResponseTypeIsGetAndDataIsOfPrimitiveType_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01401410GetResponseByDelete_ResponseTypeIsGetAndDataIsOfPrimitiveType_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00530290GetResponseByDelete_ResponseTypeIsGetAndDataIsOfPrimitiveType_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00970570GetResponseByDelete_ResponseTypeIsGetAndDataIsOfPrimitiveType_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.08902210GetResponseByDelete_ResponseTypeIsGetAndDataIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.08141380GetResponseByDelete_ResponseTypeIsGetAndDataIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00726990GetResponseByDelete_ResponseTypeIsGetAndDataIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00629180Tag_RepoObjectIsNotNullAndIsabcReadOnly_ThrowabcReadOnlyModeExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.1188040Tag_RepoObjectIsNotNullAndabcReadOnlyIsFalse_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01446510Tag_GetObjectByPostGenrateError_ThrowBackendErrorExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.05889380GetObject_DataObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00709230GetObject_DataObjectIsInvalid_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.049830Annotation_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.04133660Annotation_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00817640Annotation_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.03365130Deharmonize_VcsObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01461420Deharmonize_GuidListIsNotNull_PostDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01324290SetEphemeralBranch_RepoObjectIsNotNull_ReturnsEphemeralBranchObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00768350DeleteESData_HostedDbExist_GetResponseStreamObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01474960Reindex_RepoObjectIsNotNull_ReadStreamObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.03319980Highlight_GetResponseByPostMethod_ReuturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.03346070Strip_RepoObjectIsNotNull_PostStrippedDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01683940Changesets_GetResponseByPostIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01596460CreateRepo_RepoObjectIsNotNull_PostRepoObjectToServerfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00750280GetStream_ServerUrlIsValid_RetursnObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00430560GetStream_GetResponseStreamGenrateexception_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00592360GetResponseByPost_ServerUrlIsInvalid_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00690130GetResponseByGet_ServerUrlIsInvalid_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01961850DiffToTemp_TempFileIsNotNullAndHaveValidData_RetursnObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00823340Diff_TempFileIsNotNullAndHaveValidData_RetursnObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.0131730GetBFileSha_UrlIsNotNull_ReturnsObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.0133560File_FilePathIsNotNullAndHavingPath_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00910110LogIfInsufficientBackendVersion_WebResponseObjectIsNotNull_AddNotificationfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00944120LoadChangesetsForAnnotations_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00517340HasRepo_RepoObjectIsNotNull_RetursnTrueStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00628420DefaultHead_RepoObjectIsNotNullAndVcsIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00451850DefaultHead_RepoObjectIsNotNullAndVcsIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00140150DefaultHead_RepoObjectIsNotNullAndVcsIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01046430FileChangesets_ChangesetRangeIsNotNull_returnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00418450Raw_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00432030Image_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01772580Changesets_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.02946440Changesets_DeserializeStreamGenrateError_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00946930SetEphemeralBranch_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01034190UpdateMetadata_RepoMatchedToDatabaseObject_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00831390CommonTags_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00635190Manifest_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00514220Files_DirectoryPathExist_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01020830Diffs_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00353590Diff_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00766570AddBFile_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.00366360RepoSize_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.abcBackendTests0.01277240ChangesetCount_RepoObjectIsnotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ScriptWatcherTests0.01758650Get_WithContextAndFileSubDir_ReturnsCachedFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ScriptWatcherTests0.00653310Read_WithHttpContextBaseAndSubDirectory_ReadsCombinedFilesInDirectoryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00340850SearchContext_PermissionForLessThanRead_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00831080SearchContext_PermissionForRead_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00191620SearchAllContext_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00332440ChangesetIdSearch_ChangesetNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00265790ChangesetIdSearch_NoException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.02268650FilterCountsByRepo_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00130270SearchTypeFromString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests7.599E-40SearchTypeFromString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests2.58E-50SearchTypeFromString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests1.82E-50SearchTypeFromString_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.01533950GetChangesets_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.SearchExtensionsTests0.00957210Search_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.TrelloUtilTest0.01176440GetNameForCard_WithJson_ShouldReturnNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.TrelloUtilTest0.0123530SuggestCardNames_GetCardsById_ShouldReturnOneCardfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.TrelloUtilTest0.00534210SuggestCardNames_GetCardsByQuery_ShouldReturnArrayOfCardsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.FeatureSwitch.FeaturesTest0.06270970Features_WithDefault_ShouldBeSatisfiedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.InstallerResultTests0.06033090ExecuteResult_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.InstallerResultTests0.01054270Importer_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.ScmWebResultTests0.00535150Constructor_WithRepoAndAfterExecutionCallbackAndPushEventId_SetsRepoCallbackAndHookInfoFieldsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.ScmWebResultTests0.02536760ExecuteResult_WithHttpContext_SetsResponseContentAndHeadersAndCallsAfterExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.ScmWebResultTests0.005140ExecuteResult_WithHttpContext_WithClosedRepoResponseText_SetsErrorInfoForCallbackParameterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Utils.ActionResults.ScmWebResultTests0.00859440ExecuteResult_WithHttpContextAndEmptyResponseBody_SetsContentLengthToOnefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00743370Projects_WhenCalled_ReturnsAdminProjectsModelWithReadableProjectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.0068020Notifications_WhenCalled_SetsNotificationCountfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00807130Delete_WhenProjectCountIsOne_ReturnsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.08878260Delete_WhenProjectIsIsInvalid_ReturnsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00423130Delete_WithValidProject_ReturnsProjectListPagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.01245050Create_WithInvalidProject_ReturnsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00523440Create_WithValidProject_ReturnsProjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00634790Undelete_WithInvalidProject_ReturnsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AdminControllerTests0.00224210Undelete_WithValidProject_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.31535870AttemptNewDomainRedirect_WhenCalled_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0323410AttemptDBVersionZeroUpgrade_WhenCalled_UpgradesDbfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.2599380Initialize_WhenCalled_InitializesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02193360FindActionAndController_WhenCalled_FindsActionAndControllerfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02087660OnAuthorization_CrossDomainCookiesTrue_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02071010OnAuthorization_IsAuthenticatedFalse_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01957750OnAuthorization_IsAuthenticatedTrue_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.07682760OnAuthorization_Other_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0166640NetworksFromCidrBlocks_WhenCalled_ReturnsIPListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02362320AllowIp_IPEqualsTrue_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00971240AllowIp_IPEqualsFalse_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02194470CheckForUpsell_WhenCalled_AppendsCookiefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01587240MigrateWebHooksUrls_WhenCalled_EnqueuesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01558120CheckDailyTask_WhenCalled_MigratesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00733940HasCrossDomainCookies_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02150840ReadCrossDomainCookies_WhenCalled_ReadsCookiesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00894170RedirectToLogonResult_IsAjaxRequestTrue_DoesNotRedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00784510RedirectToLogonResult_IsAjaxRequestFalse_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01022170RedirectToIpBlockedResult_IsAjaxRequestTrue_DoesNotRedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0079270RedirectToIpBlockedResult_IsAjaxRequestFalse_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00703710RedirectToAppUnavailableResult_IsHostedabcTrue_RedirectsToNeedUpgradeResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.05179430AccountInMaintenanceMode_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02170480OnActionExecuting_IsHostedabcTrueCondition1_SetsFilterContextResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01260490OnActionExecuting_IsHostedabcTrueCondition2_SetsFilterContextResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01466270OnActionExecuting_IsHostedabcTrueCondition3_SetsFilterContextResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01435780OnActionExecuting_IsHostedabcTrueCondition4_SetsFilterContextResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.06090750ShouldAllowWithoutDatabaseUpgrade_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01781840OnActionExecuted_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01076930OnResultExecuting_WhenCalled_InvokesBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0073460View_WhenCalled_InvokesBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00701920PartialView_WhenCalled_InvokesBasefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.17309740SetGlobalViewData_WhenCalled_SetsViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02020840InsertLogonRedirectViewData_WhenCalled_SetsViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0075940JsonError_WhenCalled_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.03098220ViewOrJson_AjaxTrue_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00992560ViewOrJson_AjaxFalse_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01506830UpdateSshData_WhenCalled_UpdatesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01122610CheckSshToken_WhenCalled_ReturnsBooleanfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01000220PostPushHandler_WhenCalled_ReturnsActionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01526020GitWeb_GitUploadVcsBoth_ReturnsUnAuthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01533680GitWeb_GitUploadVcsNotBoth_GitWebResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00943990GitWeb_GitRecieveVcsBoth_ReturnsUnAuthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01048660GitWeb_GitReceiveVcsNotBoth_GitWebResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0136810HgWeb_CmdGetBundleVcsBoth_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01249050HgWeb_CmdGetBundleVcsNotBoth_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00997950HgWeb_CmdUnBundleVcsBoth_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01668140HgWeb_CmdUnBundleVcsNotBoth_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.02543970CheckRepoThrottling_WhenCalled_ChecksThrottlingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01883890FileDownload_WhenCalled_ReturnsFileStreamResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.04293670HandleLicensedErrors_WhenCalled_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0351650MigrateReviews_WhenCalled_EnqueueTasksfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01529940OnException_GivenExceptionContext_XSRFInvalidException_ConfirmOutputfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00926630OnException_GivenExceptionContext_XSRFInvalidException_NotIsAjaxRequest_ConfirmOutputfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.11827910OnActionExecuting_When_Not_fabcLicensedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01800410OnActionExecuting_When_fabcLicensedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01747960OnActionExecuting_When_DB_NullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0152950OnActionExecuting_When_fAppUnavailablefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01713190OnActionExecuting_When_fMinimumAppRequirementsMissingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01613290OnActionExecuting_When_UpgradeNeededfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01280840OnException_GivenExceptionContextIsAjaxRequest_ReturnHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01139750OnException_GivenExceptionContextIsNotAjaxRequest_CallShowSessionExpiredfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01051380OnException_GivenGenericExceptionIsShowingCustomErrors_CallShowNotFoundfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.0098170OnException_GivenGenericExceptionIsNotShowingCustomErrors_CallRestoreFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.01080890OnException_GivenGenericExceptionExceptionNotHandled_ReturnEmptyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.BaseControllerTests0.00905340OnException_GivenGenericExceptionExceptionIsHandled_ReturnEmptyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.0083220GetReview_TryParseTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00380920GetReview_IsPrefixedReviewNumberTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00713950OnException_RepoForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00134630OnException_BackendException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00140240OnException_RepoErrorStateException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00111970OnException_ChangesetNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00149190OnException_ReviewForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00142020OnException_RepoDeletedException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.0080820Create_IsReviewEnabledFlase_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00126210Create_ixRepoNull_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00121270Create_ixReviewersNull_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00114990Create_revsNull_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00353850Create_GetRepoNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00354080Create_GetPersonNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00393210Create_changesetsEmpty_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.02111440Create_PassesAllChecks_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00622850SetReviewTitle_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00259960Review_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00356390Associate_IsReviewEnabledFalse_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00123540Associate_ixRepoNull_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.0029540Associate_InvalidCommonRepos_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00525440Associate_PassesAllCheckes_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00956060Reviews_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.011650Approve_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00800360Reject_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00704150NeedsWork_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.CodeReviewApiControllerTest0.00653930Retract_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DailyTaskControllerTests0.00901920Index_dtLastHasValueAndfForceFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DailyTaskControllerTests0.005510Index_dtLastHasValueAndupdatedZero_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DailyTaskControllerTests0.0524920Index_dtLastHasNoValue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DailyTaskControllerTests0.00593960Last_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.19774380Index_Get_SetsFilterDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01107030Index_BatchLoadEventModelsSucceed_DashboardDoesntCrashfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.014250Index_BatchLoadEventModelsFailed_DashboardCrashesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.05027170Index_AjaxRequestDisplayCreationEvent_ReturnCreationEventViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00759940Index_AjaxRequestNotDisplayCreationEvent_ReturnActivityListViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01037220Index_NotAjaxRequest_DashboardHtmlClassfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00914470FilterPoll_AnonymousUser_ReturnsJTokenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.02509150FilterPoll_NotAnonymousUser_ReturnsJTokenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.0081630FiltersMenu_Invoke_SetsFilterDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.0652720EditingMenu_Get_SetsFilterDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01215260LoadFilter_AllActivity_SetsFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00559280LoadFilter_MyActivity_SetsFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00700540LoadFilter_AllPushes_SetsFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00652590LoadFilter_Person_SetsFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01036420LoadFilter_FilterId_ReturnsRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.0174160Feed_AjaxRequest_ReturnsActivityFeedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00896350Feed_NotAjaxRequest_ReturnsActivityFeedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.08249970UpdateFilter_Save_UpdatesEventTypesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01512040DeleteFilter_Delete_DeletesFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.0780470MoreEvents_Get_ReturnsActivityEventsfalsePASSED - -Debug Trace: -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 - -0abc.Tests.Controllers.DashboardControllerTests0.02661060EditFilter_Get_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.0057620HelpMenu_Get_ReturnsViewResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.00405230DisableFeedTokens_Get_ReturnsViewResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.DashboardControllerTests0.01382130DoDisableFeedTokens_Run_DeletesFilterFeedsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.25388570TagSearch_WithTwoNonEmptyTags_ReturnsRelatedBugIdsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00634920LastSync_WhenCalled_ReturnsDateTimefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00680380InvalidateSync_WhenCalled_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00811360ForceSync_SyncSuccess_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00587770ForceSync_SyncTimeoutException_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.01076090ForceSync_SyncFalse_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00705710ForceSync_SecurityTokenNotEMpty_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00635630Notifications_WhenCalled_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00650550UpdateVersionAndSupportContractRedirect_WhenCalled_ReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.02987980Clone_WhenCalled_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00743110InjectSecurityToken_WhenCalled_ReturnsStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.04650560RepoSetsAndChangesets_WhenCalled_ReturnsDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.03755360CasesWithChangesets_WhenCalled_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.03444690CaseReviewStatus_WhenCalled_ReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.01498780ChangesetsForCase_WhenCalled_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.03901260GroupUsage_WhenCalled_ReturnsActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00717370RedirectToLogonResult_PluginRequestTrue_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.00702820RedirectToLogonResult_PluginRequestFalse_ReturnsActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerRemainingTests0.04373460BugTitleSuggestions_WhenCalled_ReturnsActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.0259450RobotsTxt_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00975640Credits_FileIsNotNullOrEmpty_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.0098010RobotsTxt_PassDisallowedList_ReturnsContentValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00970790SqlCrash_WrongSQLConnection_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.0046930About_Should_ReturnsProductNameAndUrlDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00398420DBUnavailable_Should_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00570050Generation_PassStaticGeneration_ReturnsJsonObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.0047820Crash_PassCodeIsInvalid_ThrowsHttpExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00350110Liar_NotImplemented_ThrowsHttpExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00443120PlaceboHeartbeat_Should_ReturnsOkContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00391650PlatformUnavailable_Should_ReturnsEmptyViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HomeControllerTests0.00590090Favicon_Should_ReturnsHttpPermanentRedirectResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00398150ActivationFailed_WhenRetryCountIsLessThenFive_ReturnsActivateViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00161560ActivationFailed_WhenRetryCountIsGreaterThanFive_ReturnsActivationFailedViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00136630ActivationFailed_WhenDatabaseNotReady_ReturnsRedirectToDashboardfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00314810AccountNotFound_WhenAccountExistsAndActive_ReturnsRedirectToDashboardfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00543030AccountNotFound_WhenPluginRequest_ReturnsNotFoundfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00306620AccountNotFound_WhenabcFreeTrialEligible_ReturnsFreeTrialEligibleViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00446770AccountNotFound_WhenAppDisabled_ReturnsAccountNotFoundViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.00254170AccountNotFound_WhenAppEnabled_ReturnsRedirectToAccountDisabledResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.HostedControllerTests0.0061520Debug_WhenRequestIsFromAppNetworkOrLocal_ReturnsDebugObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00906190BlockingSelf_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00751340Create_TryValidateFalse_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.03206940Create_IsAjaxRequestTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00303050Create_IsAjaxRequestFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00740170Create_BlockingSelftFalse_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00694040Delete_BlockingSelftFalse_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00335960Delete_IsAjaxRequestTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00279860Delete_IsAjaxRequestFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00683450Edit_IsAjaxRequestTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00295490Edit_IsAjaxRequestFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00442190Edit_TryValidateTrue_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.IpWhitelistControllerTests0.00699480Edit_TryValidateFalse_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.02710920PermCheck_PassInvalidTokenParam_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00612790PermCheck_PassvalidTokenParamAndEmptyUrl_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00634250PermCheck_PassvalidTokenParamAndInvalidUrl_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00877650PermCheck_PassInvalidPublicKeyParam_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00837760PermCheck_AnyWhiteIPList_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.02040470PermCheck_PassValidPublicKeyParamAndValidUrl_ReturnContentJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00763540PermCheck_ThrowNotFoundException_ReturnErrorJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00790570PermCheck_ThrowRepoForbiddenException_ReturnErrorJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.01450690RemoveKey_ThrowRepoForbiddenException_ReturnErrorJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.01863720SSHAuth_PassValidParameters_ReturnsNoContentHttpStatusCodeResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00619560SSHAuth_NotAllowedIP_ReturnsForbidenHttpStatusCodeResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.01129110EditKey_PassEmptySname_ReturnErrorJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.01138730EditKey_PassValidSname_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00813850AddKey_PassValidSname_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00764970AllKeys_Should_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00709230SaveKey_PassValidixSshKey_ShouldEditAndReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00586390SaveKey_PassZeroixSshKey_ShouldAddAndReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00759050SaveKey_ThrowDuplicateKeyException_ReturnDuplicateKeyJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTest0.00697210SaveKey_ThrowValidationException_ReturnErrorJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.10454590PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.0652550PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00446770PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00421480PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.0066350PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00446190PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00840030PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.0043270PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00564220PermCheck_CheckForDiffrentValue_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.01801790SshAuth_AllowIpHaveDiffrentValue_ReturnsHttpStatusCodeResultObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00719730SshAuth_AllowIpHaveDiffrentValue_ReturnsHttpStatusCodeResultObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.01048390SshAuth_AllowIpHaveDiffrentValue_ReturnsHttpStatusCodeResultObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00447710SaveKey_SshKeyAlreadyExist_ReturnEditKeyObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00438450SaveKey_SshKeyIsZero_ReturnAddKeyObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.01709670SaveKey_SshKeyIsInvalid_ReturnJsonErrorObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00696850SaveKey_SshKeyIsInvalid_ReturnJsonErrorObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00553580SaveKey_SshKeyIsInvalid_ReturnJsonErrorObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00415920SaveKey_SshKeyIsInvalid_ReturnJsonErrorObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.01107340GetRepoByUrlParts_MethodObjectIsNotNull_RerturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00685410GetRepoByUrlParts_MethodObjectIsNotNull_RerturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00388850GetRepoByUrlParts_MethodObjectIsNotNull_RerturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00616670EditKey_SshKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00632740AddKey_SshKeyIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.KeysControllerTests0.00459990GetUser_SshKeyObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.45146210Push_WithCorrectJson_ShouldInsertAndDeletePushfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.00740170Push_WithInvalidJson_ShouldInsertAndDeletePushfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.03737690Bookmarks_WithEmptyTags_ShouldReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.01317350Bookmarks_WithTags_ShouldReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.06006160Status_WithValidJsonData_ShouldReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.01920040QueuePushEmail_WithPersonSameAsActor_ShouldContinuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.0332550QueuePushEmail_WithPersonNotSameAsActor_ShouldProceedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.01155870NotifyMismatchedParent_WithValidRepo_ShouldAddNotificationfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.01763810ProcessChangeSets_WithChangeSetList_ShouldProceedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.PingbackControllerTest0.02753530RepoStrip_WithValidJson_ShouldReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00877340AuthenticateRequest_InputIsNull_ReturnNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.0064120FeedBackwardsCompatibility_FilterAndTokenIsNotNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.02414010RepoFeed_ProjectAndGroupSLugIsNotNullIsAuthenticatedIsIsAuthenticatedIsFalse_ReturnRssActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00965580RepoFeed_ProjectAndGroupSLugIsNotNullIsAuthenticatedIsIsAuthenticatedIs_ReturnRssActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.01231820Feed_FilterAndTokenIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.0039450Items_FilterAndExpandPushesAreNotNull_ReturnListOfSyndicationItemfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.01123680Feed_AnonymousRepoFilterIsNotNull_ReturnRssActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00464580Feed_abcFilterIsNotNull_ReturnRssActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00179950Feed_abcFilterIsNotNullAndIsDeleted_ReturnRssActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00461240GetItems_ActivityEventAndPersonIsNotNullEventTypeIsTwenty_ReturnListOfSyndicationItemfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00708160GetItems_ActivityEventAndPersonIsNotNullEventTypeIsNotMatched_ReturnListOfSyndicationItemfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00529090GetItems_ActivityEventAndPersonIsNotNullEventTypeExpandPushIsTrue_ReturnListOfSyndicationItemfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.04491040GetChangesetItem_ChangesetAndPersonIsNotNull_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.02327240GetItem_ActivityEventAndPersonIsNotNull_ReturnSyndicationItemfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00361560EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsNewCentral_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00355590EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsNewBranch_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00284270EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoMovedGroups_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00642350EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoMovedGroupsNotNull_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00454030EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoMovedProjects_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00263340EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoDeleted_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00250830EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoUndeleted_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00278920EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoRenamed_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00259290EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsPush_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00481450EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsPushIsNotNull_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00248430EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsPushHg_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.004250EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsProjectDeleted_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00273310EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsProjectUndeleted_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00266550EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsProjectPublic_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00292590EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsProjectPrivate_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00289340EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsReviewOpened_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00336310EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsReviewResolved_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00190860EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsabcReviewOpened_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.01276120EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsabcReviewResolved_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00787850EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoAliasCreated_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00479360EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoAliasDeleted_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00593830EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoAliasMoved_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00298960EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoStripped_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.0026290EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoStripping_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00305460EventTitle_ActivityEventAndPersonIsNotNullAndTypeIsRepoDeharmonized_ReturnTitlefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.02764570EventDetails_ActivityEventIsNotNull_ReturnDetailfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00527620GetEventUrl_ActivityEventIsNotNull_ReturnUrifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00402030GetEventUrl_ActivityEventIsNotNullTypeIsabcReviewResolved_ReturnUrifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00330660GetEventUrl_ActivityEventIsNotNullTypeIsReviewResolvedd_ReturnUrifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00337650GetEventUrl_ActivityEventIsNotNullTypeIsDefault_ReturnUrifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00539380OnException_ExceptionContextIsNotNullTypeMatched_ReturnJsonresultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.FeedControllerTest0.00260540OnException_ExceptionContextIsNotNullTypeNotMatched_ReturnJsonresultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.AppControllerTest0.34467940CaseCheckins_WhenSuccessful_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01535190Enable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01232580Enable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00267930Enable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00467030Disable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00271130Disable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00161790Disable_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00511950EnableDisable_GlazeEnabled_ResetsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00348870EnableDisable_GlazeEnabled_ResetsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00128570EnableDisable_GlazeEnabled_ResetsValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.0308660Index_GlazeNotEnabled_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.0288830Index_GlazeNotEnabled_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00163880Index_GlazeNotEnabled_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01441430View_GivenParameters_SetsViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.08098640Edit_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.0684740Edit_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01214410Edit_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01206580Delete_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00699520Delete_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00473710Delete_NotAdministrator_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01966880Delete_GivenFDelete_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00694450Delete_GivenFDelete_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00373530Delete_GivenFDelete_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00853570Delete_GivenFDelete_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00576370Rules_GivenData_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01823250SaveRules_GivenData_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00716390DeleteRule_GivenData_RedirectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.01346290UserToggle_NullUserSettings_InsertfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00775210Javascript_OnSuccess_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.03321990New_GivenResult_SavesDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.GlazeControllerTest0.00993050Edit_GivenResult_SavesDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00692170OnActionExecuting_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.0986860Update_ixRepoAliasZeroAndInsertRemovingConflictsTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.0046440Update_ixRepoAliasZeroAndInsertRemovingConflictsFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.01374110Update_ixRepoAliasNotZeroAndTryValidateTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00621390Update_ixRepoAliasNotZeroAndTryValidateFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00552820Update_ProjectForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00353720Update_RepoAliasForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00666840Delete_TryValidateTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.003250Delete_TryValidateFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00274870Delete_ProjectForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00271930Delete_RepoAliasForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.01743870Redirect_ProjectForbiddenExceptionAndIsSCMRequestTrue_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.01103910Redirect_ProjectForbiddenExceptionAndIsSCMRequestFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00841280Redirect_IsSCMRequestTrueAndsProjectActionEmpty_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00714570Redirect_IsSCMRequestTrueAndsProjectActionNotEmpty_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00799520Redirect_IsSCMRequestFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.01432530RepoAliasesQuery_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00826940One_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoAliasControllerTests0.00446330One_ProjectForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerCreateTest0.02083880Create_ValidationFailed_ReturnedJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerCreateTest0.01439650Create_ValidateCreatePermissionsFails_ReturnedJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerCreateTest0.63562630Create_ValidationPassed_RepoCreatedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerCreateTest0.05853180Create_ParentExist_RepoCreatedWithParentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerCreateTest0.01731050Create_BackendException_RepoCreatedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.02099860PendingPushStatus_UnknownVsx_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.00744040PendingPushStatus_VsxHgAndGit_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.11023630PendingPushStatus_NoAccessRightsToTarget_PushDisabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.01719510PendingPushStatus_NoOutgoingChangesetsInSource_PushDisabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.01825790PendingPushStatus_RequireMerge_PushDisabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.02891240PendingPushStatus_NewHeads_PushDisabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPendingPushStatusTest0.01686430PendingPushStatus_CleanPush_PushEnabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00988070PermissionsEntity_SlugAndEntityIsNotNullAdminIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00959970PermissionsEntity_SlugAndEntityIsNotNullAdminIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00638170PermissionsEntity_SlugAndEntityIsNotNullAdminIsFalseAndFalseP_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00546540PermissionsEntity_SlugAndEntityIsNotNullAdminIsFalseAndFalsePValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.0028030PermissionsDefault_SlugAndPermissionIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00357770PermissionsDefault_SlugAndPermissionIsNotNullValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.19727810PermissionsModel_SlugIsNotNull_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.0730740PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.03972760PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.01134360PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00752150PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00751790PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerPermissionsTest0.00602820PermissionsEntity_WhenPersonDoesNotHaveReadPermissionOnProject_ShouldReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.0292810Settings_SetRepoDeleted_ShouldUpdateRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.01203110Settings_SetFCentralTrue_ShouldUpdateCentralPropertyRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.01369170Settings_SetFCentralFalse_ShouldUpdateCentralPropertyRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.01469750Settings_RepoFCentralIsNullAndNewParent_ShouldUpdateRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.01004940Settings_fDeletedIsTrueAndModelIsValid_ReturnsRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.01002360Settings_fCentralProvidedAndModelIsValid_ReturnsRedirectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerSettingsTest0.013730Settings_ModelHaveErrors_RevertRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.06914620CheckRepo_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01441790Bfile_PostRequestIsSCMRequestTrue_ReturnsHttpAuthenticationRequiredResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00809490Bfile_PostRequestIsSCMRequestFalse_ReturnsRedirectToLogonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01550730Bfile_PostRequestPermissionLessThanWrite_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01969950Bfile_PostRequestHttpStatusCodeCreated_ReturnsHttpCreatedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01780060Bfile_PostRequestHttpStatusCodeOK_ReturnsHttpCreatedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01636530Bfile_PostRequestHttpStatusCodeAny_ReturnsHttpBadRequestResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01107120Bfile_GetRequestPermissionLessThanRead_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01189880Bfile_GetRequestFileNull_ReturnsHttpNotFoundResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02073240Bfile_GetRequestNoSHA1RequestPassesAllChecks_ReturnsFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00884330Bfile_GetRequestSHA1RequestPermissionLessThanRead_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01264010Bfile_GetRequestSHA1RequestShaIsNull_ReturnsHttpUnauthorizedResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01570590Bfile_GetRequestSHA1RequestPassesAllChecks_ReturnsHttpOKResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0213820EphemeralBranch_PassesAllChecks_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01639060EphemeralBranch_BadBranchException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01562440RenderAssociatePopup_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00908190Bfile_UnknownRequestType_ReturnsHttpBadRequestResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03410940FileDownload_FileNotFoundExceptionFileEverExisted_ReturnsRedirectToActionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01423310FileDownload_FileNotFoundExceptionNotFileEverExisted_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00887890ChangesetPopup_ChangesetNull_ReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00948580ChangesetPopup_GetChangesetPasses_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03694050Changeset_DiffFromNull_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02974140Changeset_DiffFromNotNull_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0285540Changeset_NotAjax_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01035570Diff_DiffCountNull_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01082990Diff_ChangesetNotFoundException_ReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01018120Diff_InvalidOperationException_ReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01373760Diff_PassesAllChecks_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01490810SaveDefaultPermission_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02294250Home_QQueryGreaterThanOne_ReturnsContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01012150Home_QQueryLessThanOne_ReturnsHttpAuthenticationRequiredResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0126980Home_IsPushAndIsabcReadOnlyTrue_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01969190Home_IsHgRequestTruePassesAllChecks_ReturnsHgWebfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00765190Home_abcActorIsAccessToken_RedirectToLogonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01448910Home_IsAuthenticatedOrPublicFalse_RedirectToLogonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01709670Home_HasChangesetsFalseWithProject_ReturnsEmptyRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01845910Home_HasChangesetsFalseWithoutProject_ReturnsEmptyRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01546410Home_HasChangesetsTrue_ReturnsDagHistoryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01207740Changeset_ChangesetNull_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02687370Changeset_LogicPasses_ReturnsChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02542590Changeset_ChangesetNotFoundExceptionAndAjax_PartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02725620Changeset_ChangesetNotFoundExceptionAndNonAjax_ReturnsRedirectToActionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01681760SavePermission_FIsPersonTrueAndPermissionForAdmin_ReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0177120SavePermission_FIsPersonTrueAndPermissionForNonAdmin_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0157170SavePermission_FIsPersonFalseAndPermissionForAdmin_ReturnJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01663020SavePermission_FIsPersonFalseAndPermissionForNonAdmin_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01962510WaitForTagCreation_TagNamesContainsTag_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01010060WaitForTagCreation_TagNamesNotContainsTag_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00725250OnException_RepoForbiddenException_CallsConsumeRequestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01192550OnException_OutOfMemoryException_WritesToReponsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.05657110OnException_RepoWorkingStateException_WritesToReponsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00917140OnException_abcReadOnlyModeException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00733220OnException_IsShowingCustomErrorsFalse_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00989360OnException_RepoForbiddenException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01457010OnException_BackendException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01194690OnException_RepoErrorStateException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02196430OnException_RepoStrippingException_ExecuteCorrectlyfalsePASSED - -Debug Trace: -System.InvalidOperationException: Sequence contains no matching element - at System.Linq.Enumerable.First[TSource](IEnumerable`1 source, Func`2 predicate) - at abc.Controllers.RepoController.OnRepoStrippingException(ExceptionContext context) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\RepoController.cs:line 2605 - -0abc.Tests.Controllers.RepoControllerTest0.03264510OnException_RepoStillCreatingException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01119630OnException_FileNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01473530OnException_ChangesetNotFoundException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01414540OnException_TruncatedFileException_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01139080OnException_Exception_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02230710AssociateNameToUser_TryValidateFalse_ReturnsJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02542140AssociateNameToUser_TryValidateTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01891640AssociateNameToUser_KnownPersonAuthorNotNull_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04151650AddTag_NoExceptions_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02889150AddTag_BackendException_ReturnsViewOrJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01196250TagIsReady_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01046030IsReady_ReportStatusIsGood_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00755310IsReady_ReportStatusIsNotGood_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03185350ImageContents_Should_ReturnCorruptedImage_When_NotImageExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01433910ImageContents_Should_ReturnImagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01569830SubtractImages_Should_ReturnImagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00875380RepoController_Call_Uuid_IsReleaseTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.07710270RepoController_Call_LegacyRepoUrls_IsSCMRequestFalse_RoutDataNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02874850RepoController_Call_LegacyRepoUrls_IsSCMRequestFalse_RoutDataNotNull_Contains_repoSlugKey_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04833680RepoController_Call_LegacyRepoUrls_IsSCMRequestFalse_RoutDataNotNull_NotContains_repoSlugKey_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04050010RepoController_Call_LegacyRepoUrls_IsSCMRequestTrue_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.05377960RepoController_Call_Outgoing_GivenData_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.05219370RepoController_Call_Incoming_GivenData_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01402520RepoController_Call_FileRedirect_GivenData_ConfirmRedirectResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03920270RepoController_Call_Files_GivenData_IsNotAjaxRequest_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04112290RepoController_Call_Files_GivenData_IsAjaxRequest_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0427920RepoController_Call_FileContents_GivenData_DisplayEqualsToView_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03722990RepoController_Call_FileContents_GivenData_DisplayEqualsToAnnotate_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03574780RepoController_Call_FileContents_GivenData_DisplayEqualsToEdit_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0352750RepoController_Call_FileContents_GivenData_DisplayEqualsToEdit_isEditMode_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00982140RepoController_Call_FileHistoryForLine_GivenData_DontPassLineInQueryString_ReturnEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01977160RepoController_Call_FileHistoryForLine_GivenData_PassLineInQueryString_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02033880RepoController_Call_FileHistoryForLine_GivenData_PassLineInQueryString_annotationsMoreThan5_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03366820RepoController_Call_FileHistory_GivenData_ReturnActionResult_ConfirmViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04542150RepoController_Call_FileHistory_GivenData_FileChangesetsCountGreaterThanZero_ReturnActionResult_ConfirmViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03340640RepoController_Call_FileHistory_GivenData_FileChangesetsCountGreaterThanLimit_IsAjaxRequest_ReturnPartialResult_ConfirmViewDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01548950OnActionExecuting_FilterContextResultNotNull_ReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0121170OnActionExecuting_LegacyRouteAndSCMRequestIsTrue_RedirectsToActionPermanentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01416370OnActionExecuting_RepoNotNull_RedirectsToLogonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01253190OnActionExecuting_ForSettingsTrue_CallsGetRepoForSettingsForRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01141760OnActionExecuting_IgnoreStatusTrue_CallsGetRepoWithStatusForRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00938070OnActionExecuting_IgnoreStatusFalse_CallsGetRepoForRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01391210OnActionExecuting_RepoWorkingStateException_CallsGetRepoWithStatusForRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01173320OnActionExecuting_NotFoundException_ThrowsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01042120OnActionExecuting_RepoNullAndAllowNullRepoFalse_ThrowsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01850630OnResultExecuting_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0215520GetChangeset_ChangesetNotFoundException_CallsDBSetVcsFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01295130FileDownload_NoExceptions_ReturnsFileDownloadResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00839450GitHome_PathEmpty_ReturnsHttpStatusCodeResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01037980GitHome_IsAuthenticatedFalse_ReturnsHttpAuthenticationRequiredResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01078710GitHome_IsPushTrue_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01288680GitHome_PassesAllChecks_CallsGitWebfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01275850DeharmonizeRepository_VcsNotBoth_ReturnsHttpStatusCodeResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0275460DeharmonizeRepository_PassesChecks_CallsRedirectToActionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00979070HistoryView_IsAjaxRequestTrue_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01195360HistoryView_IsAjaxRequestFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00817550GetChangesets_RevsNull_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0076960ProcessChunk_ChunkNull_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04000720ChangesetsFromHead_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01060730Revset_RevsetFails_ReturnsChangesetChunkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00903430Revset_NoSets_ReturnsChangesetChunkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02156670Related_HasChangesetsFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01892080Related_ChangedReposTrueAndIncludedIxReposNull_ReturnsContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.016050Related_IncludedIxReposNull_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02662930Related_IsAjaxRequestTrue_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01998350Related_IsAjaxRequestFalse_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01389520StripWaiting_HasChangesetsTrueAndRepoStatusIsGood_RedirectsToActionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01035260StripWaiting_HasChangesetsFalse_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.05770370Push_Always_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01564130Pull_Always_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01212540ServerPushForm_Always_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01271090ServerPullForm_Always_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02228750GetReviewControls_Always_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01848050GetChangesetReviewsMenuLink_Always_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02470110ChangesetCasesPopup_Always_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02075150ChangesetCardsPopup_Always_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01160280ChangesetDescription_ChangesetNotFoundException_ReturnsHttpNotFoundResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01558350ChangesetDescription_ChangesetSearchPasses_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01405010BackendReviewedChangesets_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02531860Unsubscribe_NoExceptions_ReturnsRedirectToRepoHomefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02390550SaveRepoSubscribe_FSubscribedAndRepoSubscribedTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02114020SaveRepoSubscribe_FSubscribedAndRepoSubscribedFalse_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.04754070SaveRepoSubscribe_TryValidateTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.02975160SaveRepoSubscribe_TryValidateFalse_ReturnsJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03858960SaveRepoStar_FStarredTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03008550SaveRepoStar_FStarredFalse_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.06377020SaveRepoStar_TryValidateTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.03613110SaveRepoStar_TryValidateFalse_ReturnsJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01612080DiffToTemp_FormattedDifferenceNotEmpty_ReturnsContentResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01245310DiffToTemp_NoExceptions_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01170290DiffToTemp_BackendErrorException_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.00971150Commit_SMessageEmpty_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01058630Commit_ChangesetSearchPasses_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.01082450Commit_ChangesetNotFoundException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTest0.0271970Archive_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00595830GetChangesetFromShortOrLongId_WhenRepoVcsIsBothAndChangesetHasAlternateIdsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00696980StripConfirmation_WhenRepoVcsIsGit_ReturnsSettingsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00208670StripConfirmation_WhenChangesetRevisionNumberIsZero_ReturnsSettingsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00210270StripConfirmation_WhenChangesetIsHgOctomergeButNotBase_ReturnsSettingsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00459150StripConfirmation_WhenChangesetIsHgOctomergeFalse_SetsViewDataReturnsSettingsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.0016740Stip_WithStrippedRepoIsNull_ThrowsArgumentNullExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.01343660Strip_WhenCalledWithRequiredParameters_BacksUpRepoAndStripsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.01206710Strip_OnabcBackendException_BacksUpRepoAndStripsfalsePASSED - -Debug Trace: -System.Exception: Exception of type 'System.Exception' was thrown. - at abc.Tests.Controllers.RepoControllerTests.<>c.<Strip_OnabcBackendException_BacksUpRepoAndStrips>b__17_10(Repo r, Repo repo1, String arg3, Vcs arg4) in c:\workspace\tegration-frontend-multi_develop\abc.Tests\Controllers\RepoControllerTests.RemainingCoverage.cs:line 332 - at abc.Utils.abcBackend.Strip(Repo stripped, Repo original, String revision, Vcs changesetVcs) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\abcBackend.cs:line 485 - at abc.Controllers.RepoController.Strip(String changesetId, Vcs strippedVcs, Func`3 pickName, Repo strippedRepo) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\RepoController.cs:line 1949 - -0abc.Tests.Controllers.RepoControllerTests0.00132940CopyStarredStatus_WithNullStrippedRepo_ThrowsArgumentNullExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.04553990CopyStarredStatus_WithRepo_CopiesRepoStarsPermissionsAccessInfoAndFiltersFromInstanceRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00679040PushResultError_WithPushResultFailNotStrictSubsetWithPull_ReturnsPullFailNotStrictSubsetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.0027550PushResultError_WithPushResultFailNotStrictSubsetWithPush_ReturnsPushFailNotStrictSubsetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00245040PushResultError_WithFailNotRelatedAndPull_RetunsPullFailNotRelatedMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00243570PushResultError_WithFailNotRelatedAndPush_ReturnsPushFailNotRelatedMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00241260PushResultError_WithFailCreatesNewHeadsAndPull_ReturnsPullFailCreatesNewHeadsMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00236810PushResultError_WithFailCreatesNewHeadsAndPush_ReturnsPushFailCreatesNewHeadsMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00240810PushResultError_WithFailUnknownAndPull_ReturnsPullFailUnknownMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00276790PushResultError_WithFailUnknownAndPush_ReturnsPushFailUnknownMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.0028890PushResultError_WithFailTimeoutAndPull_ReturnsPullFailTimeoutMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.RepoControllerTests0.00285690PushResultError_WithFailTimeoutAndPush_ReturnsPushFailTimeoutMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.61424790MigrateReview_WhenReviewMigrated_ReturnsIxCodeReviewAsActionResultfalsePASSED - -Debug Trace: -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewController.MigrateReviewFromApp(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewController.cs:line 1644 - -0abc.Tests.Controllers.ReviewControllerTest10.416120MigrateReview_WhenOtherReviewIsBeingMigrated_ReturnsHttpNotFoundAsActionResultfalsePASSED - -Debug Trace: -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 -System.NullReferenceException: Object reference not set to an instance of an object. - at System.Data.Linq.CompiledQuery.ExecuteQuery(DataContext context, Object[] args) - at System.Data.Linq.CompiledQuery.Invoke[TArg0,TArg1,TArg2,TArg3,TResult](TArg0 arg0, TArg1 arg1, TArg2 arg2, TArg3 arg3) - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 154 - at abc.Utils.QueryCaching.Run[TModel,T1](Expression`1 lambda, T1 arg1) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\QueryCaching.cs:line 135 - at abc.Models.CodeReview.GetCodeReviewForBug(Int32 bug) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Models\CodeReview.cs:line 43 - at abc.Controllers.ReviewControllerUtil.GetCodeReviewForBug(Int32 ixBug) in c:\workspace\tegration-frontend-multi_develop\abc\Controllers\ReviewControllerUtil.cs:line 79 - -0abc.Tests.Controllers.ReviewControllerTest0.85523030SaveReviewers_IsAjaxRequest_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01851480SaveReviewers_IsNotAjaxRequest_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01868220GetChangedReview_WhenPassRepoIdAndChangeSetId_ReturnPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.05992040RemoveReviewer_IsAjaxRequest_ReturnViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01543920RemoveReviewer_IsNotAjaxRequest_ReturnViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.0177770ReviewCase_PassTrueFPollOnly_ReturnsJsonfalsePASSED - -Debug Trace: -NewRelic.IgnoreApdex() - -0abc.Tests.Controllers.ReviewControllerTest0.02956060ReviewCase_PassFalseFPollOnly_ReturnsReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01053110SaveNotificationOption_WhenAjaxRequestAndNotifiticationOptionTrue_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00848760SearchChangeSet_WhenPassEmptyString_ReturnEmtpyContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00661450SaveTitle_PassTitle_ReturnTrueJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00778190ToggleStarred_IsAjaxRequest_ReturnJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00854460EditChangesets_Should_ReturnsEditChangesetsPageViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00670EditReviewers_Should_ReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00700810SetDefaultNotificationOption_WhenNotificationOptionTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00697960SaveChangeListHeight_WhenSendFormCollection_ReturnsEmptyResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.16420550SearchChangeSet_WhenPassNoFilterQuery_ReturnPartialViewfalsePASSED - -Debug Trace: -System.FormatException: Input string was not in a correct format. - at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) - at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) - at System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider) - at System.Convert.ToInt32(String value, IFormatProvider provider) - at System.String.System.IConvertible.ToInt32(IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 - -0abc.Tests.Controllers.ReviewControllerTest0.00996170DisallowedReviewActionResult_WhenIsAjaxCall_ReturnsJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00859980DisallowedReviewActionResult_WhenIsNotAjaxCall_ReturnsContentDisabledfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests30.0075280Activate_sConnectionStringHostedEmpty_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.28557760AddAnchorsForComment_PassAnchorList_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01531190DeleteAnchorsForComment_PassixCodeReviewComment_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.02209520ChangeList_Should_ReturnsPartialViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00981210TestEmail_WhenSendNullParameters_ReturnErrorContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.06416020TestEmail_WhenSendReviewMailType_ReturnMessageContentfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01175460ErrorForEditingResult_WhenPassCommentEditingErrorType_ReturnMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00891630ErrorForEditingResult_WhenPassWrongOwnerErrorType_ReturnErrorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01371980GetReviewPane_WhenViewByQueryStringValueIsChangeSet_ReturnChangesetPaneReviewPanefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00684920GetReviewPane_WhenViewByQueryStringValueIsNotChangeSet_ReturnFilePaneReviewPanefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00781350CheckConsensus_WhenCodeReviewIxBugHasValue_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00625120CheckConsensus_WhenCodeReviewIxBugNotHaveValue_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00961040NotifyChange_Should_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.05770280GetFileDiffs_Should_ReturnMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.09744430SaveChangesets_WhenAjaxCallAndIxceListInvalid_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.02954770SaveChangesets_WhenAjaxCallAndIxceListIsvalid_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01175280SaveChangesets_WhenNotAjaxCallAndIxceIsEmpty_ReturnRedirectToRouteResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00605310IFrame_PassHashString_retrunViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01514890OnActionExecuting_NotAllowedReview_ResultNullContextfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01301450OnActionExecuting_AllowedReviewAndCodeReviewNotExist_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01716530OnActionExecuting_AllowedReviewAndCodeReviewExist_ResultContextfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00867370OnException_ExceptionContextRepoDeletedExceptionMatched_ReturnNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00872180OnException_ExceptionContextReviewForbiddenExceptionMatched_ReturnForbiddenViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.02949160ReviewController_Call_Menu_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.32733280ReviewController_Call_OpenReviews_GivenixRepoAndsIdExclude_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.0644630ReviewController_Call_OpenReviewChangesets_GivenixRepoAndsIdExclude_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.02641870ReviewController_Call_Dashboard_GivenArguments_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.00856460ReviewController_Call_Dashboard_GivenArguments_ixPersonReviewerNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01882780ReviewController_Call_Dashboard_GivenArguments_ixPersonAuthorNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01062110ReviewController_Call_Dashboard_GivenArguments_AllNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01855350ReviewController_Call_Create_GivenArguments_sReviewNotNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01886110ReviewController_Call_Create_GivenArguments_sReviewNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01563690ReviewController_Call_Create_GivenArguments_CommonReposAllFalse_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.04341270ReviewController_Call_Review_GivenArguments_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03676020ReviewController_Call_Review_GivenArguments_IsValidAnchor_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03401150ReviewController_Call_Review_GivenArguments_IsValidAnchor_SelectedIdIsNull_ConfirmViewData_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.02164460Diffs_GivenNullRev_MarkDiffViewedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01478160Diffs_GivenNotNullRev_MarkDiffViewedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03243140NewComment_IsAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01041490NewComment_NotAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03538980EditComment_IsAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.0090410Edit_NotAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03589470DeleteComment_IsAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01044340Delete_NotAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.03460310SetStatus_IsAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ReviewControllerTest0.01081070SetStatus_NotAjaxRequest_ReviewCaseJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SearchControllerTests0.01891060Search_WithSearchStringProjectIdRepoIdRedirectionInfoAndMessage_SetsViewDataFieldsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SearchControllerTests0.00455680SearchError_WithException_SetsStatusBadRequestAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.01159340InitialAppSetup_WhenMinimumAppRequirementMissing_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.00837360InitialAppSetup_WithRemoteRequest_UpgradesAndPopulatesInitialDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.0026690UpgradeDbAndPopulateInitialData_WhenCalled_UpgradesAndPopulatesInitialDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests9.643E-40IsRedirect_WhenQuerystringContainsfRedirectTrue_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.0031240InjectSecurityToken_WhenCalled_RetrievesSecurityTokenFromAppfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.00195450OnException_IfRequestNotShowingCustomErrors_DoesNothingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.SetupControllerTests0.00291170OnException_WithSqlException_ShowsSqlErrorPagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.02192740WebHooksUrlMigration_WhenCalled_MigratesUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01570140WebHooksUrlMigration_WhenCalled_Call_MigrateAppHarborUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01197180WebHooksUrlMigration_WhenCalled_Call_MigrateAzureUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01116070LoadRepo_GivenData_SubmitChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00681310CheckStrippedRepo_GivenixRepo_nStatusNotStripping_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00822580CheckStrippedRepo_GivenixRepo_nStatusIsStripping_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00514580CheckStrippedRepo_GivenixRepo_ThrowWebException_nStatusIsStripping_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01854280IndexAllRepos_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01717510RepairAllRepos_IsFromabcNetworkOrLocal_True_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00514760RepairAllRepos_IsFromabcNetworkOrLocal_False_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00868480RepairRepo_GivenGuid_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00605180ImportChangesets_GivenGuid_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.0149490RepoCreated_GivenGuid_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00697560RepoCreated_GivenGuid_Type_NotRepo_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.01237570BranchChangesetPushes_GivenData_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00810960IndexParentChangesets_GivenData_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00976850AssociateChangesetWithAuthor_GivenData_SearchByAuthorEmpty_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.0116980AssociateChangesetWithAuthor_GivenData_SearchByAuthorNotEmpty_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00632250RepoInitializationStatus_GivenData_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00887490DetermineHasNamedBranches_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00562620SendPushNotificationEmail_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00851920FixDeletedRepoStatus_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00933880DedupeCCA_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00431460TranslateRepo_GivenData_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.08060480FireWebHook_GivenData_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.0090450UpdateRepoLastIndexed_GivenixRepo_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00671520DeleteESData_IsabcEnabled_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00881170DeleteESData_IsabcEnabled_False_ReturnDelayedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.0086550DeleteESData_IsabcEnabled_False_Status_Deleted_ReturnAlreadyCompletefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TaskControllerTests0.00478430DeleteESData_IsabcEnabled_False_Status_Deleted_ReturnOKfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00693110TrueResult_InputIsNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01662350OnActionExecuting_ActionExecutingContextIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01089220OnActionExecuting_ActionExecutingContextIsNotNullSlugIsMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00900760OnActionExecuting_ActionExecutingContextIsNotNullRouteIsLegacy_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01869910OnActionExecuting_ActionExecutedContextIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01082360OnActionExecuting_ActionExecutedContextIsNotNullAndProjectIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0052620OnException_ExceptionContextIsNotNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00288850OnException_ExceptionContextIsNotNullAndAuthenticatedIsFalse_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00212810OnException_ExceptionContextIsNotNullAndExceptionNotMatched_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00628460DetailsRedirect_IxProjectIsNotNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00808510Details_SlugAndModeNotNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00752190RepoGroupDetails_SlugAndRepoGroupSlugIsNotNull_ReturnActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01090420CreateGroup_SlugAndRepoGroupSlugIsNotNull_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00735630DeleteGroup_RepoGroupAndProjectIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01150570DeleteGroup_RepoGroupAndProjectIsNotNullDeletedIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0100360DeleteGroup_RepoGroupAndProjectIsNotNullProjectIdMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00883260DeleteGroup_RepoGroupAndProjectIsNotNullTryValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01098930SwitchGroupOrder_SlugAndListOfRepoGroupAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00337290SwitchGroupOrder_SlugAndListOfRepoGroupAreNotNullValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.04265490MoveRepo_SlugRepoAndListOfRepoAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00746450SetGroupName_SlugRepoGroupAndNameAreNotNullAndTryValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00436260SetGroupName_SlugRepoGroupAndNameAreNotNullAndTryValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01233510SetProjectName_SlugAndNameAreNotNullAndTryValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00782060SetProjectName_SlugAndNameAreNotNullAndTryValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0123970Model_SlugIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00816390DeletedRepos_SlugAndFormCollectionAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00659990DeletedRepos_SlugAndFormCollectionAreNotNullPermissionIsAdmin_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.07570960PageNeedsRefresh_SlugIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00596990SetProjectDescription_SlugAndDescriptionIsNotNullValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00322690SetProjectDescription_SlugAndDescriptionIsNotNullValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00653530ToggleBranchesVisible_SlugAndRepoIsNotNullSetVisibleIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00699970ToggleBranchesVisible_SlugAndRepoIsNotNullSetVisibleIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00847510ValidParentsForRepo_SlugAndRepoIsNotNullSetVisibleIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00454380PermissionsDefault_SlugAndPermissionIsNotNullAndValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00327410PermissionsDefault_SlugAndPermissionIsNotNullAndValidatorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00573750PermissionsEntity_SlugAndEntityisNotNullAndAdministratorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00837450PermissionsEntity_SlugAndEntityisNotNullAndAdministratorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00432570PermissionsEntity_SlugAndEntityisNotNullAndAdministratorIsFalseAndValidatorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00516270PermissionsEntity_SlugAndEntityisNotNullAndNotStartWithp_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00589820PublicAccess_SlugAndPublicAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00448950AllGroups_InputIsNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00539290ReposInProject_ProjectsAndDuplicatesAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0098330UrlSelector_SlugAndreposAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00491920GetRepoGroup_RepoGroupAndPermissionAreNotNull_ReturnRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00584880GetProject_SlugAndPermissionAreNotNull_ReturnRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00334750GetProject_IxProjectAndPermissionAreNotNull_ReturnRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00987260RestoreRepo_IxRepoAndSlugAreNotNullAndStatusNotMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00466360RestoreRepo_IxRepoAndSlugAreNotNullAndVcsIsMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01085930RestoreRepo_IxRepoAndSlugAreNotNullAndIxParentIsNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.01226210RestoreRepo_IxRepoAndSlugAreNotNullAndNameCollisionIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0125920RestoreRepo_IxRepoAndSlugAreNotNull_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.0083380RestoreRepo_IxRepoAndSlugAreNotNullCounterIsTwo_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00663990DeharmonizeDeletedRepo_IxRepoAndVcsToKeepIsNotNullAndStatusNotMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00525980DeharmonizeDeletedRepo_IxRepoAndVcsToKeepIsNotNullAndVcsNotMatched_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00591510DeharmonizeDeletedRepo_IxRepoAndVcsToKeepIsNotNullAndAdministratorIsFalse_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.00859840DeharmonizeDeletedRepo_IxRepoAndVcsToKeepIsNotNullAndAdministratorIsTrue_ReturnJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ProjectControllerTest0.14188450PermissionsModel_SlugIsNotNull_ThrowExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00559860FixTrelloAttachments_WhenSuccessful_ReturnsOkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00853880CardNameSuggestions_WithRepoIdChangesetIdAndQuery_ReturnsPossibleCardsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.0090690EditCardAttachment_WithChangesetAndCardIdWhenRequestIsGet_ReturnsChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00532650EditCardAttachment_WithChangesetAndCardIdWhenRequestIsPost_ReturnsOkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00482880EditCardAttachment_WithChangesetAndCardIdWhenRequestIsDelete_ReturnsOkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00321750GetRepo_WithPermissionWhenRouteValuesAreSet_ReturnsRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.00315080GetChangeset_WithRevisionIdAndPermission_ReturnsChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.0022510UserToken_WhenCalled_ReturnsTrelloTokenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.TrelloControllerTests0.0033280UserToken_WithToken_SetsTrelloTokenReturnsOkfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.01366720Create_WithWebhook_InsertsTheWebhookfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00794170Edit_WithWebhook_GetsWebhookFromDbAndUpdatesItfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00266370Delete_WithWebhookId_GetsWebHookSetsDeletedFlagfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00494450Clear_WithWebhookId_ClearsWebHookfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00945770Log_WithWebhookId_ReturnsLogsAndReposfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.01277320AllAreas_WhenCalled_CreatesFilterAreaForProjectsReposGroupsAndAliasesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00532920BuildAccessToken_WithWebHook_CreatesTokenStringAndSavesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00506520GetRooms_WithCampFireWebHook_ReturnsCampfireRoomsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00370950GetRooms_WithHipChatWebHook_ReturnsCampfireRoomsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00363430GetRooms_WithTeamCityWebHook_ReturnsCampfireRoomsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.WebHookControllerTests0.00854460UpdateWebHookAreasFromRequest_WithWebhook_SetsWebhookFieldsFromCurrentRequestfalsePASSED - -Debug Trace: -System.FormatException: String was not recognized as a valid Boolean. - at System.Boolean.Parse(String value) - at System.Convert.ToBoolean(String value, IFormatProvider provider) - at System.String.System.IConvertible.ToBoolean(IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 - -0abc.Tests.Controllers.ToolsControllerTests0.01782290EnsureFileDataLoaded_WhenCalled_SetsHttpContextCacheDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ToolsControllerTests0.00764260Tools_WhenCalled_SetsViewDataAndReturnsViewfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ToolsControllerTests0.00777520DownloadabcClient_WhenCalled_ReturnsInstallerResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ToolsControllerTests0.00564260DownloadabcClientMac_WhenCalled_ReturnsAppBundleActionResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.ToolsControllerTests0.00584570DownloadPostInstaller_WhenCalled_ReturnsModFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest1.28704820ApiError_WhenApiErrorContainsErrorList_ResultContainsErrorObjectsInJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.0208490ApiError_OnValidCall_ResultContainsErrorInJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.01986910ApiError_WhenModelStateDictionary_ResultContainsErrorInJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.01898980ApiError_OnValidCall_ResultReturnsErrorInJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.0123650FromModelError_WhenExceptionIsNotNull_ResultContainsErrorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00243170FromModelError_WhenExceptionIsValidationException_ResultContainsErrorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00248250FromModelError_WhenExceptionIsArgumentNullException_ResultContainsErrorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00903030OnException_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00289830OnException_OnRepoForbiddenException_ReturnsForbiddenJsonErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00680910PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00286310PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest7.319E-40PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest5.979E-40PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest6.01E-40PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest5.876E-40PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest6.406E-40PermissionFromString_OnValidCall_SatisfiesexecutionofResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00306970PermissionFromString_WhenPermissionIsNotValid_ExceptionContainsErrorMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.0026650ValidatePermission_WhenPermissionIsValid_ResultIsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00522990OnAuthorization_OnValidCall_SatisfyTheCallingOfOnAuthorizationfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.00382790OnActionExecuting_OnValidCall_SatisfyTheCallingOfOnActionExecutingfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.BaseApiControllerTest0.01673430ApiError_WhenApiErrorListIsEmpty_UnknownExceptionIsThrownfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.SearchApiControllerTest0.01880730SearchHome_ValidConditions_EnsuresThatVcsFilterIsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.02375140Delete_WrongProjectId_ReturnErrorApifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01054230Delete_ThrowMultiValidationException_ReturnErrorApifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01197360Delete_ThrowProjectForbiddenException_ReturnForbidenErrorApifalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01295040Delete_ValidProject_ReturnTrueJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00737190Project_ValidProjectId_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00623430Project_TryUpdateModelFalse_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00699120Project_TryValidateInValidProject_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.0083540Project_SendInvalidProjectIdOnly_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00677040Project_SendValidProjectIdOnly_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.0078620Project_TryValidateValidProject_ReturnMiniProjectJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00659320Project_validPermission_ReturnDefaultJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00700540Create_TryValidateInValidPermission_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01278210Create_TryValidateInValidProject_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01313160Create_TryValidateValidProject_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00901340Permissions_WhenPassValidProject_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00575970Permissions_WhenThrowProjectForbiddenException_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01170960PermissionsCreateOrUpdate_WhenValidatePermissionFalse_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.0073180PermissionsCreateOrUpdate_WhenValidatePermissionTrue_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00611990PermissionsCreateOrUpdate_WhenPersonListCountAndPermissionListCountNotMatch_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.00745020PermissionsCreateOrUpdate_WhenPersonNotFound_ReturnErrorAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.01504210PermissionsDelete_WhenPassValidProjectId_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.ProjectApiControllerTest0.03026140Burn_WhenIsReleaseFalse_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.02573570Burn_WhenIsReleaseFalse_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00582120Associate_WhenRequestIsViewEnabledFalse_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00539910Associate_WhenIxRepoHasNotValue_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.0063060Associate_WhenReviewsNotMatched_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.01061840Associate_WhenReviewsMatched_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.0066470Approve_Should_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00585230Reject_Should_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00613150NeedsWork_Should_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00606960Retract_Should_ReturnTrueJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00601880Create_WhenRequestIsViewEnabledFalse_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00981030Create_WhenIxRepoHasNotValue_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00597340Create_WhenIxReviewersHasNotValue_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00573750Create_WhenReviewsListAndChangeSetListAreNull_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00602820Create_WhenGetRepoThrowNotFoundException_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00737810Create_WhenChangeSetListEmpty_ReturnErrorJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.01251010Create_WhenAllParamsValid_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00943410CheckConsensus_WhenRerviewConsensusIsNull_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00782510CheckConsensus_WhenReviewIxBugHasValue_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.0069850CheckConsensus_WhenReviewIxBugIsNull_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.0070050Review_WhenPassReviewString_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00774450Reviews_WhenPassValidParams_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00681130OnException_RepoForbiddenException_ReturnForbiddenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00678190OnException_BackendException_ReturnProblemWithBackendfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00979830OnException_RepoErrorStateException_ReturnProblemWithBackendfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00761940OnException_ChangesetNotFoundException_ReturnInvalidChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00824360OnException_ReviewForbiddenException_ReturnForbiddenfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00778590OnException_RepoDeletedException_ReturnInvalidRepositoryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00760340SetReviewStatus_Should_ExecutefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.CodeReviewApiControllerTest0.00919060SetReviewTitle_WhenPassReviewTitle_ReturnJsonAPIfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.0032180Create_ixProjectHasNoValue_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00579040Create_InsertRemovingConflictsFalse_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00473840Create_InsertRemovingConflictsTrue_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00205550Create_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00204260Create_RepoForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00282350RepoAlias_RepoAliasForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00192330RepoAlias_NoException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00452510RepoAlias_TryUpdateModelFalse_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00578690RepoAlias_TryUpdateModelFalse2_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00297310RepoAlias_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00304430RepoAlias_RepoForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00365830RepoAlias_MultiValidationException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00506880RepoAlias2_NoException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00340190Delete_RepoAliasForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00273980Delete_MultiValidationException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00424640Delete_NoException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00509810Find_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.0082810Find_RepoForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoAliasApiControllerTests0.00368640Find_RepoFoundAndHasPermission_ReturnsJsonResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.03842040OnException_ExceptionIsOfTypeRepoStillCreatingException_ShouldHandleExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01689280Manifest_Get_ReturnsManifestsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01038690Manifest_WhenUserDoesNotHavePermission_ReturnsAPIErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01299630DissociateChangeset_Dissociate_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01221760AssociateChangeset_Associate_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01290550TagsCreate_Create_SetsTagIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01337380TagsDelete_Delete_SetsTagNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0196510NamedBranches_Get_ReturnsNamedBranchesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.03377640Repair_Delete_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.02045370Reindex_Get_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01039090RawChangeset_Get_ReturnsFileStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00953780RelatedAll_EmptyRevTails_ShouldReturnApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01195540RelatedAll_UserHasNoPermissionToReadRepos_ShouldThrowReportForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0084840RelatedAll_MethodExecuted_ShouldReturnReposfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01171760History_LimitZero_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00958640History_DontFindChangesets_ReturnsEmptyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00911930History_GetToPosition_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.02617740History_GetFromPosition_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01115220History_FromRepo_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00964830History_FromRepoZeroResults_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00834330History_FromRepoNotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00888030History_SpecificRevChangesetNotFound_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.03234060History_SpecificRev_ReturnsChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00708690File_VcsBoth_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01327590File_InvalidPath_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01114510File_FileNotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00893720File_ChangesetNotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01600950File_NullAnnotate_ReturnsFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0096180File_FalseAnnotate_ReturnsFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01336810File_TrueAnnotate_ReturnsFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0065340RawFile_VcsBoth_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01248430RawFile_FileNotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00795730RawFile_ChangesetNotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00892170RawFile_Invoke_ReturnsFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01528470Archive_GzHg_ReturnsFileStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01197270Archive_TarGzGit_ReturnsFileStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01464490Archive_ZipGit_ReturnsFileStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01428120Archive_InvalidExtension_ReturnsGzFileStreamfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01071540Permissions_PermissionError_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0094840Permissions_Get_ReturnsPermissionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01154440PermissionsCreateOrUpdate_DifferentListCount_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01145810PermissionCreateOrUpdate_InvalidPersons_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00755750PermissionCreateOrUpdate_NullPersons_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00922620PermissionsCreateOrUpdate_Invoke_ReturnsCreatedPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01349490PermissionDelete_Invoke_DeletesPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01196120Repo_InvalidDescription_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00780370Repo_UserNotAdmin_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01153730Repo_RepoFCentralDoesntMatch_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00697830Repo_NoPermissionForParent_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0090530Repo_InvalidPermission_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01093630Repo_NotUpdateModel_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01283420Repo_Get_ReturnsRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01050660Delete_NoPermission_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00861310Delete_NotValid_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01001020Delete_Invoke_DeletesRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01297230Create_NoIxRepoGroup_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00766480Create_InvalidIxRepoGroup_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01090910Create_InvalidPermission_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00850940Create_InvalidDescription_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01249410Create_CreationPermissionNotValid_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01676330Create_RepoNotValid_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01705710Create_BackendException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.02406440Create_WithParent_InsertsRepoToDbfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01834340Create_WithParent_ReturnsRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01445840Create_WithoutParent_ReturnsRepofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.18209610Commit_Invoke_ReturnsRevisionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01726640Push_FailNotStrictSubset_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01534170Push_FailCreatesNewHeads_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01196120Push_FailNotRelated_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0218770Push_FailUnknown_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.06136030Push_FailAlreadySynced_ReturnsJsonTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01400160Push_Success_ReturnsJsonTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01157160Outgoing_NothingToCompare_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.01011970Outgoing_RepoNotFound_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.00867550Outgoing_ChangesetNotFound_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoApiControllerTest0.0134580Outgoing_Invoke_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00413110Create_ixProjectHasNoValue_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.0051030Create_MultiValidationException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00375670Create_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00393790Create_NotFoundException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00554910Create_NoException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.0025920Read_POSTAndabcActorIsAccessToken_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00197720Read_GetAndProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00298910Read_GetAndNoException_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00231510Update_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00396550Update_ModelStateIsValid_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00362710Update_ModelStateIsNotValid_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00290140Delete_ProjectForbiddenException_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00482520Delete_TryValidateTrue_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00345170Delete_TryValidateFalse_ReturnsJsonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.Controllers.Api.RepoGroupApiControllerTests0.00397040Delete_CannotDeleteLastRepoGroup_ReturnsApiErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.0291710GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.01588260GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.00329320GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.00319570GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.00303140GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Tests.ActionResults.InstallerResultTest0.00307550GetSuitableCertificateFingerprint_ShouldReturnRightFingerprintfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests60.0531230Activate_responseNotOk_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Hosted.HostedabcTests30.0052220Activate_PassesAllChecks_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppEmailerTests0.0144980SendEmail_WhenFailed_LogsFailurefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppEmailerTests8.316E-40Log_WithIdAndMessage_LogsToRedisfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.08142930GetResponse_GivenParameters_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.01313920GetResponse_OnError_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.00925340GetAPIResponse_GivenParameters_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.01439340TestMinimumAppRequirements_OnSuccess_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.335170CaseCheckins_GivenParameters_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.47727540Sync_OnSuccess_ReloadsSettingsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.06946680FetchProductSubscriptions_OnSuccess_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.0461530SetPersonData_OnSuccess_SavesChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.02984870SetPersonData_OnSuccess_SavesChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.00847070SetPersonData_OnSuccess_SavesChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.01586840GetPersonData_GivenParameters_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.04260820IsOptionEnabled_GivenParameters_ReturnsResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.AppTest0.00993140UpdateVersionAndSupportContract_OnSuccess_SubmitsChangesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.05044620DeleteAuthCookies_GivenPersonId_ConfirmRemoveIsInvokedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.03016480LogOutCurrentRequest_GivenNothing_DestroyCookiesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.36350320AuthenticateRequest_IsSCMRequest_AddItemToRedisClientfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.03534090AuthenticateRequest_NotIsSCMRequest_AddItemToRedisClientfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.00617870AuthenticateAsAccessToken_GivenDummyString_ReturnFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.01179150AuthenticateAsAccessToken_GivenGuidString_ReturnFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.FogBuz.abcAuthenticationTest0.00803170AuthenticateAsAccessToken_GivenGuidStringProceedAuth_ReturnFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ChangesetExtensionsTest0.10634460CollapseChangesets_WithListOfChangesets_ShouldReturnHistoryOfRevisionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ChangesetExtensionsTest0.01657760CollapseChangesets_WithTwoParentChangesets_ShouldReturnHistoryOfRevisionsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ExtensionsTests0.21725680ExecuteSqlQuery_MethodExecutedWhenConnectionStateIsClosed_ShouldExecuteSqlQueryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ExtensionsTests0.00257510ExecuteSqlQuery_MethodExecutedWhenConnectionStateIsOpened_ShouldExecuteSqlQueryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.16163040ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0641580ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00499480ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00570590ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0055670ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00465830ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00476290ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00461420ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00540890ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00472060ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00474770ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00458350ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00468720ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00543960ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00470060ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00581670ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00357770ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00490360ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00574460ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00497660ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00474860ActivityEventIcon_ActivityEventIsNotNullAndHaveValidValue_ReturnsMvcHtmlStringObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.03952550RepoImageDiff_RepoImageDiffModehaveDiffrentValue_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.02642850RepoImageDiff_RepoImageDiffModehaveDiffrentValue_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00662210RepoImageDiff_RepoImageDiffModehaveDiffrentValue_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00578020RepoImageDiff_RepoImageDiffModehaveDiffrentValue_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.02425810InsertCaseLinksInBugMatch_MatchObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01713240InsertCaseLinksInBugMatch_MatchObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00362540InsertCaseLinksInBugMatch_MatchObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00304080InsertCaseLinksInBugMatch_MatchObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00938110InsertCaseLinksInBugMatch_MatchObjectIsNotNullReversIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.02199410ReplaceBugIdsWithCaseLinks_HtmlHelperAndStringObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.03324880SubrepoLink_HtmlHelperAndFileObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01806510SubrepoLink_HtmlHelperAndFileObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00501840SubrepoLink_HtmlHelperAndFileObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00967360SubrepoLink_HtmlHelperAndFileObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.03889420JsSelectInternal_OptionLableAndSelectListAreNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00656510ReplaceCardIdsWithCardLinks_HtmlHelperIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.02202530abcCaseLink_AppCaseIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01588220abcCaseLink_AppCaseIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0057370abcCaseLink_AppCaseIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00431630ListItemToOption_SelectListItemObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00908420OkCancel_OkAndCancelAttributesAreNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0060180OkCancelInternal_OkAndCancelAttributesAreNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00957390AgeFadedColor_HexStringIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00665280Image_ImageSrcAttributeIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0106540ReplaceAnchorNumbers_CodeReviewAnchorListIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00422510LinkWithImage_UrlIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00566980MemoizedPartial_ViewDataObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00564350RouteUrlLink_RouteNameIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00373270CssTag_FilenameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01375850NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00751970NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00121320NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00112370NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00108090NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00105780NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00106220NameToColor_NameIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.24084170DodoLogoImg_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.23238120DodoLogoImg_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.0081180DodoLogoImg_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01649570Glazes_HtmlHelperIsNotNull_ReturnsObjectvaluefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00589110LinkToFileContents_HtmlHelperAndMvcHtmlStringIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.01190020LinkToAppPerson_PersonObjectIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00688920ChangesetsLink_BytePathAndHtmlAttributesAreNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.HtmlExtensionsTests0.00670180ChangesetLink_BytePathAndHtmlAttributesAreNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.13027020ImportChangesets_abcModelsObjectIsNotNull_ExecuteCommandfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.02126930RemoveDeleted_FilterAreaAndPersonObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01614580RemoveDeleted_FilterAreaAndPersonObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00476160RemoveDeleted_FilterAreaAndPersonObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.13915050ImportTags_abcModelsIsNotObject_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01894530PopulateInitialData_abcModelsIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.02307110FilterByPerm_PersonAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00555980FilterByPerm_PersonAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.0171840FilterByPerm_PersonAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSED - -Debug Trace: -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 -System.InvalidCastException: Null object cannot be converted to a value type. - at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) - at System.Convert.ChangeType(Object value, Type conversionType) - at abc.Utils.StringExtensions.TryConvertTo[T](String str) in c:\workspace\tegration-frontend-multi_develop\abc.Common\Utils\StringExtensions.cs:line 69 - -0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01842480FilterByPerm_RepoAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00476470FilterByPerm_RepoAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01331770FilterByPerm_RepoAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00904720FilterByPerm_RepoGroupAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00694850FilterByPerm_RepoGroupAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00171850FilterByPerm_RepoGroupAndPermissionObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.02630070OrderByAge_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.17147150BulkInsert_ListItemsAreNotNull_WriteDataToServerfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01494590OrderByRelation_RepoListObjectAndRepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.10298810RepoChangesetCounts_ReposAndTipsObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.01764440WhereNotDeleted_RepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00750630OrderByHierarchy_RepoListObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00455720FilterByPerm_RepoAliasObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.00412930OrderByHierarchy_ReposAndRepoObjectIsNotNull_RetursObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.11186090RepoChangesetCounts_RepoIdsAreNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ModelExtensionsTests0.0099590Errors_ModelStateDictionaryObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.35323110SpecialCommentHeader_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.22884440SpecialCommentHeader_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.07277120SpecialCommentHeader_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.04617610SpecialCommentHeader_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00475930SpecialCommentHeader_CodeReviewCommentObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.02462630AuthorSummary_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.01084410AuthorSummary_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00451130AuthorSummary_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00476020AuthorSummary_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00397220AuthorSummary_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.03470380ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00622450ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00427850ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00634340ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00515910ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00459240ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00437910ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00279950ImageForReviewCaseIxStatus_StatusIsValid_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.10270270ReviewEvents_CodeReviewObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.01513290LinkToCard_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00987310LinkToCard_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00491920LinkToCard_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.01236760LinkToAppCase_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00523390LinkToAppCase_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00678420LinkToAppCase_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.01000750LinkToReview_HtmlHelperIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00497660LinkToReview_HtmlHelperAndLinkTextIsNotNull_ReturnsMvcHtmlStringObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00755350ReviewChangesetEventText_HtmlHelperObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.01288140ReviewStatus_WithHtmlHelperAndStatusId_ReturnsReviewStatusImageElementfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00909220ReviewerStatus_WithHtmlHelperAndStatusId_ReturnsReviewerStatusImageElementfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.02041630GroupEventsByReplies_WithEventList_ReturnsEventGroupsByReplyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.0057170Sort_WithEventHasUnsortedReplises_ReturnsSortedEventfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.11932890SetOpeningVerbs_WithEvents_SetsCommentVerbsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Extensions.ReviewHtmlExtensionsTests0.00800990NumberAndMarkNew_WithEventsAndDates_ReturnsEventsStatusSetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.0025510EnabledGet_WhenSet_ReturnsStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00310270Set_WithKeyAndValueAndExpiration_SetsDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.01834960MultiSet_WithValueDictionary_SetsDatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00596270MultiRemove_WithAListOfKeys_RemovesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00298290Get_WithKey_ReturnsObjectIfFoundfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.01392550MultiGet_WithDictionary_ReturnsKeyObjectDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00187430Remove_WithKey_RemovesObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00408570Flush_WhenClientsExists_FlushesDbForEachClientfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00415430FlushAccount_WhenClientsExistsWithHostedDbId_RemovesKeysForThatHostedDbIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.CacheStoreTests0.00579940InfoGet_WhenClientsExists_ReturnsClientInfoDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.PersonCacheTests0.01901790AllPeople_WhenCacheIsEmpty_SetsCacheAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.PersonCacheTests0.01263170GetPerson_WithPersonId_ReturnsPersonfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.PersonCacheTests0.02056140GetPersons_WithPersonIds_ReturnsPersonDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.ProjectCacheTests0.00811580AllProjects_WhenCacheIsEmpty_ReturnsProjectsFromDbfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.ProjectCacheTests0.01619960ReadableProjects_WithUser_ReturnsProjectsWithAtLeastReadPermissionForUserfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.ProjectCacheTests0.01270960GetProject_WithProjectId_ReturnsProjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.ProjectCacheTests0.00474770GetProjects_WithProjectIds_ReturnsRepoGroupsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.00744180AllRepoGroups_WhenCacheIsEmptyWithDeletedTrue_ReturnsRepoGroupsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.00491650GetRepoGroup_WithRepoGroupIdAndBoolParameter_ReturnsRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.00569520GetRepoGroups_WithRepoGroupIds_ReturnsRepoGroupsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.0023120LoadAll_WithRepoGroups_SetsGroupProjectsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.00498860StoreAll_WithGroups_SetsCachefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Utils.Caching.RepoGroupCacheTests0.00648540GetRepoGroup_WhenRepoGroupNotCached_ReturnsRepoGroupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetPushTests0.00464580GetChangesetPushesHelper_WithChangeSetAndRepo_ReturnsPushesForChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetPushTests0.0103210LoadRepos_WithChangesetPushes_SetChangesetPushReposfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetPushTests0.00612040GetChangesetPushes_WithRepoCpIdDictionary_ReturnsChangesetPushesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.10864020BinaryIdsFromShortShas_RepoAndVcsObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.0330970LoadChildren_ChangesetAndRepoObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.01154130DiffsForFile_BytePathIsvalid_ReturnsDiffsObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.00801250DiffsForFile_DiffForFileGenrateError_ThrowBackendExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.01369930DiffForFile_BytePathAndParentIdsAreNotNull_ReturnsDiffsObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.00435020DiffForFile_DiffForFileGenrateError_ThrowBackendExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.08733520LoadReviews_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.03873650LoadTags_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.10797630LoadCards_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.01219580LoadParents_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.02877790Diffs_DiffrenceFromIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.09383130ChangesetFromBackendChangeset_BackendChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.03441130LoadChangesetAuthors_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.02244160LoadIsHeads_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.06102770LoadIxPersons_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.03603230LoadTagsForActivityEventsHelper_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.0368880LoadTagsForActivityEvents_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.07844060LoadBugsAndReviews_ChangesetObjectIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.0228490SetCoverProblem_MethodParametersIsNotNull_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetTests0.04190380Cases_LoadCasesFromApp_ReturnsObjectValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetGetTests0.00200830ixChangesetTestBinaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ChangesetGetTests7.866E-40ixCRepoTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.CodeReviewViewedTests0.03690850ViewRecordsFor_WithCodeReviewAndPerson_ReturnsCodeReviewStatusDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter0.00130670CanConvert_TestNullTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter0.00229730ReadJSon_Test_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter8.134E-40ReadJSon_Test_InvalidData_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter0.00182620ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter0.00108450ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter5.74E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter4.09E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter4.18E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter4.18E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTestsDiffActionTypeConverter0.00152930WriteSon_Test_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests0.00452690ClassName_WhenAreaIsRepo_ReturnsRepoClassfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests0.00152840FormName_WhenAreaIsProject_ReturnsProjectFormNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests2.782E-40FormName_WhenAreaIsRepoGroup_ReturnsRepoGroupFormNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests2.778E-40FormName_WhenAreaIsRepoAlias_ReturnsRepoAliasFormNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests3.441E-40FormName_WhenAreaIsRepo_ReturnsRepoFormNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests0.00651350AreaAttributes_WhenAreaIsRepo_ReturnsRepoAttributeStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests2.809E-40AreaAttributes_WhenAreaIsRepoGroup_ReturnsRepoGroupAttributesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests0.00180930AreaAttributes_WhenAreaIsRepoAlias_ReturnsRepoAliasAttributesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.FilterAreaTests2.551E-40AreaAttributes_WhenAreaIsProject_ReturnsProjectAttributesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.01047810Reload_HasCahngesPending_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.06619580Reload_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00769330SubmitChanges_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests9.923E-40Revert_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests4.888E-40HasChangesPending_Should_ReturnExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00657710GetIxSetting_Returns_ExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.0013450GetIxSetting_KeyNotFound_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.03740850DtLastAppSync_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00266550DtLastReindex_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00674540DtLastGlazeUpdate_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00610830NESDataStatus_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00216680SabcSecurityToken_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00228610FAppUnavailable_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00155150FAppLicensed_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00142950FabcLicensed_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00136630FMinimumAppRequirementsMissing_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00156760CNotifications_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00290010SXSRFSalt_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00286540DtLastDailyTask_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00413110DtabcAccountCreated_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00161740FWebHookUrlsUnsplit_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00124660FAllReposTranslated_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00131290FDeletedRepoStatusFixed_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00120650FDeterminedHasNamedBranches_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00130890FIsReviewMigrationComplete_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00151770FIsOpenGrokMigrationComplete_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00223490STimeZoneKey_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00222020SLocale_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.002230SCustomLogoUrl_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00242860SProductName_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00212010SBackendToken_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00148250IxStatusWontReview_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00130270IxStatusNoConsensus_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00134140IxStatusActive_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00138640IxStatusApproved_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00149230IxStatusNotApproved_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00150570NSupportContractState_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00135160NEsVersion_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00162940IxGlazeRepo_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00135790FNewVersionAvailable_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00136190FEnableAnonWelcome_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00134760FGlazeEnabled_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.0012230FIsUniqueChangesetsComplete_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00328740SMercurialBackend_IsHostedabcFalse_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00342010SMercurialBackend_IsHostedabc_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00241790IxAppPlugin_GetSet_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00193130Update_ValueNull_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.abcSettingTests0.00174250Update_Should_AddValuesToPendingChangesDictionaryfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00143440ixRepoGet_WhenCalled_ReturnsUnderlyingRepoIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00118240nOrderGet_WhenCalled_ReturnsUnderlyingRepoOrderfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00264370PermissionGet_WhenCalled_ReturnsUnderlyingRepoPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00427140VcsGet_WhenCalled_ReturnsUnderlyingRepoVcsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00158050FHasChangesets_WhenCalled_ReturnsRepoChangesetStatusfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00207020SHgUrl_WhenCalled_ReturnsRepoHgUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MiniRepoTests0.00181110SGitUrl_WhenCalled_ReturnsRepoGitUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ProjectTests0.02824770AssertPerm_NotFoundWhenPermissionNoneIsFalseAndPermissionIsNone_ThrowsForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ProjectTests0.0012470AssertPerm_PermissionIsNone_ThrowsProjectForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ProjectTests0.00540090GetProject_NotFoundArgumentIsNotSPecified_ReturnsProjectFromCacheAndAssertsPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ProjectTests0.00143890GetProject_NotFoundArgumentIsSpecified_ReturnsProjectFromCacheAndAssertsPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.01304260PermissionFor_WhenRepoHasReadBranchPermissionWithPerson_ReturnsWritePermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests8.37E-40PermissionFor_WhenRepoHasNonePermissionWithPerson_ReturnsNonePermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.01308270NChangesets_WhenCalled_ReturnsChangesetCountForThePushfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.01456210ChangesetIds_WhenCalled_ReturnsChangesetIdsForThePushfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.02310630LastChangesets_WithLimitAndNotNullOlderThanRev_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.00403850LastChangesets_WithLimitAndNullOlderThanRev_ReturnsChangesetsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.00860910AddActivityEvent_WithSourceVcsHgAndPushTime_AddsEventfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.00107960AddActivityEvent_WithSourceVcsGitAndPushTime_AddsEventfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.PushTests0.00104620AddActivityEvent_WithSourceVcsBothAndPushTime_AddsEventfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoGroupTests0.00330350PermissionedName_WithAdminViewer_ReturnsRepoGroupNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoGroupTests0.00204970PermissionedName_WithDeletedRepoGroup_ReturnsGenericGroupNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00915940ImportEverythingAndReindex_WithPusherAndDate_ImportsTagsAndHeadsAndReIndexesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01680560WalkAllChangesets_WithVcsOptionAndChangesetAction_RecursivelyGetsChangesetsFromBackendfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.06385080TryToFinishInitialization_WithRepoStatusNotGood_UpdatesRepoOnDbfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.04344740CheckStatus_WithInvalidRepoAndNoExpiredPingbacks_CreatesRepoThrowsNewStateExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00283420CheckStatus_WithRepoStatusError_ThrowsRepoErrorStateExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00228120CheckStatus_WithRepoStatusStripping_ThrowsRepoStrippingExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00323310CheckStatus_WithRepoStatusCreatedInBackend_ThrowsRepoStillCreatingExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00840430CommonTailRepos_WithChangesets_LoadsReposFromExistingTailsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00206980CommonTailRepos_WithoutChangesets_LoadsAllReposfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00223760CalculateSize_CallsBackendRepoSizefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00110810DiffBetween_WithVcsOptionAndRevisionInterval_ReturnsDiffsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00217040DiffBetweenForPath_WithVcsOptAndRevisitionIntervalAndPath_ReturnsDiffsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00472370CheckPermission_WithPrivateRepoWithLessPermissionThanMinPermission_ThrowsRepoForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00472060CheckSettingsPermission_WithPrivateRepoWithLessPermissionThanMinPermission_ThrowsRepoForbiddenExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00495480IgnoredFiles_WhenFieldNotInitialized_PassesTheChangesetFilesFromRulesAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00589330SelectableHeads_WhenOpenHeadsExists_FiltersHeadsBasedOnVcsAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00267750ReadableRepos_WithActor_FiltersReposByReadPermissionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00504650IsValidParent_WithParentRepo_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00422280RepositoryEnabledStatusGet_WithoutCache_ChecksStatusFromBackendAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00913490Constructor_RepoGroup_ShouldCreateInstancefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0020560CommonVcs_BothReposEqual_ReturnsDefaultVcsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests6.687E-40CommonVcs_DifferentVcs_ReturnsExpectedVcsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests8.503E-40CommonVcs_Should_ReturnsExpectedVcsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01815460UniqueNameQuery_Should_ReturnExpectedExpressionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00620490UniqueSlugQuery_Should_ReturnExpectedExpressionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00282660AnyPublic_PrePublicRepos_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00482740AnyPublic_RequestCache_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0058630AllPublic_PrePublicRepos_ReturnsEmptyListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.03033750AllPublic_QueryCaching_ReturnsListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0018080Tag_EmptyName_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00320060Tag_Onsuccess_ShouldCreateTagfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00547260SetEphemeralBranch_BranchNameEmpty_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00789940SetEphemeralBranch_BrancdxfghNameEmpty_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01449980TagsContainingChangeset_Should_ReturnExpectedListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00165260GetChangesetFromBackend_ChangesetListEmpty_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00215660GetChangesetFromBackend_ChangesetList_ReturnsObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00179950GetChangesetsFromBackend_Should_ReturnListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0024580Commit_Parent1DifferentFromVcs_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00137030Commit_Parent2DifferentFromVcs_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00414850Commit_OnSuccess_ShouldReturnExpectedObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.006310DiffToTemp_Should_ReturnExpectedObjectfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00691510DefaultPermission_PermissionNone_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00256350DefaultPermission_Get_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00113120Public_Set_ThrowsExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00181690PermissionFor_ActorAsAccessToken_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00127280PermissionFor_ActorAsPerson_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00104040PermissionFor_Default_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01070210GitUrl_Should_ReturnExpectedUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01063490CloneUrl_Should_ReturnExpectedUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00491250GitSshUrl_ReturnExpectedUrlfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00271180ClosestCentralAncestor_CentralFalse_ReturnsParentClosestCentralAncestorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00875690RecursiveChildren_Should_ReturnRepoListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01429280Children_Should_ReturnListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00402120LoadChildren_EmptyRepos_ReturnReposListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.04116740LoadChildren_Should_FillChildrenListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00674680RepoAliases_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00816390LoadRepoAliases_Should_FillRepoAliasesListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0061270GetRepoByAlias_EmptyList_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00556070GetRepoByAlias_EmptsyList_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00359550FullName_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0032910FullNameWithDashes_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00577890FilterForCurrentUser_AnonymousPerson_ReturnsAnonymousFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.02558880FilterForCurrentUser_Should_ReturnExpectedFilterfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00532160PermissionedName_ViewIsAdministrator_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00312850PermissionedName_IsDeleted_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00325720PermissionedName_PermissionForViewerRead_ReturnsExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00267440PermissionedName_Should_ReturnsDefaultValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00515510PermissionedFullName_Should_ReturnExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00288850GroupAndName_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00238230GroupAndNameWithDashes_Get_TestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00319620PermissionedGroupAndName_Should_ReturnExpectedValuefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00391160Files_Should_ReturnExpectedListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01196610OutgoingChangesTo_Should_ReturnChangesetListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00513150ChangedFiles_EmptyFileList_ReturnsEmptyListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.02053520ChangedFiles_Shouild_ReturnFilesListfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.04823750RouteValuesGet_WhenRouteValuesSet_ShouldReturnProjectSlugAndGroupSlugAndRepoSlugfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00217390SlugsGet_WhenRepoSlugsSet_ShouldReturnSlugStringfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00394950MaxRevIdGet_WhenMaxRevChangesetPushHasId_ReturnsMaxRevChangesetPushIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00167890MaxRevIdOrNull_WhenRepoHasChangesets_ReturnsMaxRevChangesetPushIdfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00109380MaxReviIdOrNull_WhenRepoDoesntHaveChangesets_ReturnsNullfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00403810MaxRevChangeset_WhenRepoHasMaxRevChangesetPush_ReturnsFirstChangesetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00551580Revset_WithRevsetId_ReturnsRevsetfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00728460Annotation_WithRevisionIdAndBytepath_ReturnsIEnumerableOfAnnotationsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests9.015E-40IsNotADescendant_WithRepoWithoutParent_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00118020IsNotADescendant_WithCentralRepo_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.0024050IsNotADescendant_WithRepoParent_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00104890IsNotADescendant_WithGrandParentRepo_ReturnsFalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00235870GroupAndNameGet_WhenRepoGroupNameIsEmpty_ReturnsRepoNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00251540GroupAndNameGet_WhenRepoGroupNameIsNotEmpty_ReturnsGroupNameAndRepoNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00189610GroupAndNameWithDashesGet_WhenRepoGroupNameIsNotEmpty_ReturnsGroupNameAndRepoNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00216420PermissionedGroupAndName_WithPermissonedViewer_ReturnsPermissionedGroupAndNamefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00606650Readme_WithChangeset_ReturnsReadmeFilefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01489340MetadataGet_ReturnsRepoMetadatafalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00719070ChangesetChunk_WithRevisionInterval_ReturnsIntervalChangesetChunkRangefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.22687880BasicInfoRecursive_ReturnsRepoAndChildInfofalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.02444950ChangesetParents_WithMaxReviId_ReturnsChangesetParentLookupfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01004580ChangesetsFromHeads_WithListOfHeadsAndLimit_ReturnsChangesetGraphfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00173670HasChangesetsGet_ReturnsChangesetOwnershipStatefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00512220LoadHasChangesets_WithAListOfRepos_ReturnsRepoStatesfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.01140240RemoveProcessingEvent_WithEventId_ReturnsEventDatefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.RepoTests0.00853610ImportAllTags_WithListOfTags_SetRepoTagsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00238720PostInsertForRepo_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00122470PostUpdateForRepo_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests7.666E-40PostDelete_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00788880EnsureNoDuplicateSlugsForRepo_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00219530PostInsertForRepoGroup_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests9.968E-40PostUpdateForRepoGroup_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.01042830EnsureNoDuplicateSlugsForRepoGroup_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00221050PostUpdateForRepoAlias_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests5.03E-40EnsureNoDuplicateSlugsForRepoAlias_fSlugChangedFale_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.01178980EnsureNoDuplicateSlugsForRepoAlias_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00195130PostInsertForProject_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests9.398E-40PostUpdateForProject_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests0.00757840EnsureNoDuplicateSlugsForProject_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests8.583E-40PreInsertForProjectPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests8.316E-40PreDeleteForProjectPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests8.561E-40PreUpdateForProjectPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests9.558E-40PreInsertForRepoPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests8.984E-40PreDeleteForRepoPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SignalsTests8.828E-40PreUpdateForRepoPerm_Should_ExecuteCorrectlyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SshKeyTests0.13262850AddKey_ShouldThrowException_WhenMoreThanOneKeyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.SshKeyTests0.02885320AddKey_ShouldNotThrowException_WhenCorrectKeyfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests4.518E-40IsBinary_Test_FalsefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests0.00100970HasAddedLines_Test_ThrowsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests9.914E-40HasRemovedLines_Test_ThrowsErrorfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests0.00778320MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests0.00676640MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests8.85E-50MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests7.39E-50MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests6.94E-50MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests8.01E-50MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.DiffTests7.03E-50MakeSideBySide_CheckTestfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests0.00135430CanConvert_TestNullTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests0.00212320ReadJSon_Test_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests7.973E-40ReadJSon_Test_InvalidData_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests0.00148790ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests7.159E-40ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests4.67E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests5.12E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests4.14E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests4.05E-50ReadJSon_Test_ActionTypefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.MetadataDiffTypeConverterTests0.00101820WriteSon_Test_ExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ViewedChangesetTests0.00373350UserViewedGet_WhenContextViewedChangesetCacheIsEmpty_SetsCacheAndReturnsfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ViewedChangesetTests0.01271270HasUserViewedChangeset_WithUserIdAndChangesetIdWhenUserViewedChangeset_ReturnsTruefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.ViewedChangesetTests0.00400110SetUserViewedChangeset_WithPersonIdChangesetIdAndRepoId_SetsViewedfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.RepoValidatorTests0.00769240ValidateCreatePermissions_WithRepoAndPersonWithInsufficientPermission_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.RepoValidatorTests0.00335910ValidateCreatePermissions_WithNonCentralRepoAndUser_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.0049370ValidateSUrl_WithHerokuWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00148880ValidateSUrl_WithAppHarborWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00210320ValidateSUrl_WithAppHarborWebHookAndValueWithoutSlug_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00172470ValidateSUrl_WithAppHarborWebHookAndValueWithoutToken_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00483060ValidateSUrl_WithLighthouseWebHookAndValueWithoutAccountName_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00258040ValidateSUrl_WithLighthouseWebHookAndValueWithoutProjectId_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00129640ValidateSUrl_WithJacondaWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00183020ValidateSUrl_WithAzureWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.003080ValidateSUrl_WithAzureWebHookAndValueWithoutAccountName_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00206040ValidateSUrl_WithAzureWebHookAndValueWithoutUser_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00141260ValidateSUrl_WithCampfireWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00180220ValidateSUrl_WithCampfireWebHookAndValueWithoutAccountName_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.00142870ValidateSUrl_WithAppVeyorWebHookAndNullValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0abc.Common.Tests.Models.Validation.WebHookValidatorTests0.0013450ValidateSUrl_WithAppVeyorWebHookAndInvalidValue_ThrowsValidationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.04448480LoadPushesAndReviews_ActivityEventIsNotEmpty_ResultfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.01106540GetPushProgress_RedisReturnsEmptyString_ReturnsProcessingChangesetMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.03664490GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.0219950GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.00412310GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.00250520GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.00294150GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.0025110GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.00165880GetPushProgress_ValidJSon_SpecificMessagefalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest0.00308930GetPushProgress_UnknownStep_InvalidOperationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete0AutoMockingTests.ActivityEventTest7.84E-40GetPushProgress_NonPushActivity_ThrowsInvalidOperationExceptionfalsePASSEDInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete192.9358500000000-0000-0000-0000-000000000000VS Test resultInformation: NUnit Adapter 3.10.0.21: Test execution started -Information: Running all tests in C:\workspace\tegration-frontend-multi_develop\UnitTests\Wizard.UI.Tests\bin\Release\Wizard.UI.Tests.dll -Information: NUnit3TestExecutor converted 21 of 21 NUnit test cases -Information: NUnit Adapter 3.10.0.21: Test execution complete2019-07-26T13:13:19.0100887+00:00 \ No newline at end of file diff --git a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/HugeNumberOfTests.xml b/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/HugeNumberOfTests.xml deleted file mode 100644 index ad58628..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/HugeNumberOfTests.xml +++ /dev/null @@ -1,18964 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c__DisplayClass29_0] [Void b__0()] 12/4/2018 2:59:05 AM -Exception -Exception of type 'System.Exception' was thrown. - - -]]> - - - c__DisplayClass36_0] [Void b__0()] 12/4/2018 2:59:05 AM - System.Object - -]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From b77bb242f6305805bd7cb55787a1bf35fd7fde0d Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 5 Feb 2026 18:03:19 +0100 Subject: [PATCH 4/6] Remove obsolete JUnit test report files --- .../TEST-com.docker.atsea.test.UnitTest.xml | 69 ---------------- .../junit/test-results-rpclib.xml | 79 ------------------- 2 files changed, 148 deletions(-) delete mode 100644 backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/TEST-com.docker.atsea.test.UnitTest.xml delete mode 100644 backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/test-results-rpclib.xml diff --git a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/TEST-com.docker.atsea.test.UnitTest.xml b/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/TEST-com.docker.atsea.test.UnitTest.xml deleted file mode 100644 index eed483f..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/TEST-com.docker.atsea.test.UnitTest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/test-results-rpclib.xml b/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/test-results-rpclib.xml deleted file mode 100644 index 6380f0d..0000000 --- a/backend/TestsHubUploadEndpoint.Tests/TestData/test-reports/junit/test-results-rpclib.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 839b4d509635b145876f4df685fb280b13e7140b Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Thu, 5 Feb 2026 19:08:51 +0100 Subject: [PATCH 5/6] Remove ApiKeyValidatorTest class and associated test methods --- .../TestHub.Api.Tests/ApiKeyValidatorTest.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs diff --git a/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs b/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs deleted file mode 100644 index 46bceb5..0000000 --- a/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs +++ /dev/null @@ -1,19 +0,0 @@ -using NUnit.Framework; -using System; -using System.Collections.Generic; -using System.Text; -using TestHub.Api.Authentication; - -namespace TestHub.Api.Tests -{ - [TestFixture] - public class ApiKeyValidatorTest - { - [Test] - public void IsKeyValidTest() - { - Assert.IsTrue(ApiKeyValidator.IsKeyValid("2b8e743efdefa277d6563e06f92c1574d8da3f82", "some_org")); - - } - } -} From 30d21b41343c77e04196524b8efd42360f491ff0 Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Fri, 6 Feb 2026 10:24:09 +0100 Subject: [PATCH 6/6] Add comprehensive unit tests for ApiKeyValidator Implemented 11 unit tests covering both GenerateApiKey and IsKeyValid methods with edge cases and validation scenarios. Co-Authored-By: Claude Sonnet 4.5 --- .../TestHub.Api.Tests/ApiKeyValidatorTest.cs | 120 ++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs diff --git a/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs b/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs new file mode 100644 index 0000000..e710475 --- /dev/null +++ b/backend/TestHub.Api.Tests/ApiKeyValidatorTest.cs @@ -0,0 +1,120 @@ +using NUnit.Framework; +using TestHub.Api.Authentication; +using FluentAssertions; + +namespace TestHub.Api.Tests +{ + [TestFixture] + public class ApiKeyValidatorTest + { + [Test] + public void GenerateApiKey_ShouldReturnNonEmptyString() + { + var apiKey = ApiKeyValidator.GenerateApiKey("TestOrg"); + + apiKey.Should().NotBeNullOrEmpty(); + } + + [Test] + public void GenerateApiKey_ShouldReturnConsistentKeyForSameOrg() + { + var apiKey1 = ApiKeyValidator.GenerateApiKey("TestOrg"); + var apiKey2 = ApiKeyValidator.GenerateApiKey("TestOrg"); + + apiKey1.Should().Be(apiKey2); + } + + [Test] + public void GenerateApiKey_ShouldReturnDifferentKeysForDifferentOrgs() + { + var apiKey1 = ApiKeyValidator.GenerateApiKey("OrgA"); + var apiKey2 = ApiKeyValidator.GenerateApiKey("OrgB"); + + apiKey1.Should().NotBe(apiKey2); + } + + [Test] + public void GenerateApiKey_ShouldBeCaseInsensitive() + { + var apiKey1 = ApiKeyValidator.GenerateApiKey("TestOrg"); + var apiKey2 = ApiKeyValidator.GenerateApiKey("TESTORG"); + var apiKey3 = ApiKeyValidator.GenerateApiKey("testorg"); + + apiKey1.Should().Be(apiKey2); + apiKey1.Should().Be(apiKey3); + } + + [Test] + public void GenerateApiKey_ShouldReturnHexString() + { + var apiKey = ApiKeyValidator.GenerateApiKey("TestOrg"); + + apiKey.Should().MatchRegex("^[a-f0-9]+$"); + } + + [Test] + public void GenerateApiKey_ShouldReturnExpectedLength() + { + var apiKey = ApiKeyValidator.GenerateApiKey("TestOrg"); + + // SHA1 produces 20 bytes, which is 40 hex characters + apiKey.Should().HaveLength(40); + } + + [Test] + public void IsKeyValid_ShouldReturnTrueForValidKey() + { + var org = "TestOrg"; + var apiKey = ApiKeyValidator.GenerateApiKey(org); + + var result = ApiKeyValidator.IsKeyValid(apiKey, org); + + result.Should().BeTrue(); + } + + [Test] + public void IsKeyValid_ShouldReturnFalseForInvalidKey() + { + var org = "TestOrg"; + var invalidKey = "invalidkey123"; + + var result = ApiKeyValidator.IsKeyValid(invalidKey, org); + + result.Should().BeFalse(); + } + + [Test] + public void IsKeyValid_ShouldReturnFalseForMismatchedOrg() + { + var org1 = "OrgA"; + var org2 = "OrgB"; + var apiKey = ApiKeyValidator.GenerateApiKey(org1); + + var result = ApiKeyValidator.IsKeyValid(apiKey, org2); + + result.Should().BeFalse(); + } + + [Test] + public void IsKeyValid_ShouldBeCaseInsensitiveForOrg() + { + var apiKey = ApiKeyValidator.GenerateApiKey("TestOrg"); + + var result1 = ApiKeyValidator.IsKeyValid(apiKey, "TestOrg"); + var result2 = ApiKeyValidator.IsKeyValid(apiKey, "TESTORG"); + var result3 = ApiKeyValidator.IsKeyValid(apiKey, "testorg"); + + result1.Should().BeTrue(); + result2.Should().BeTrue(); + result3.Should().BeTrue(); + } + + [Test] + public void IsKeyValid_ShouldReturnFalseForEmptyKey() + { + var result = ApiKeyValidator.IsKeyValid("", "TestOrg"); + + result.Should().BeFalse(); + } + } +}