From ace5e2901bd69a1f4e868d2da650db9df39fc58d Mon Sep 17 00:00:00 2001 From: Matt Richardson Date: Fri, 30 Aug 2019 16:30:29 +1000 Subject: [PATCH] Add extra explanatory description to the test --- .../Octopus.Client.E2ETests/InlinedDependenciesFixture.cs | 7 +++++++ .../Octopus.Client.E2ETests/NuSpecDependenciesFixture.cs | 4 ++++ .../Octopus.Client.E2ETests/PowerShellExecutionFixture.cs | 8 ++++++++ 3 files changed, 19 insertions(+) diff --git a/source/Octopus.Client.E2ETests/InlinedDependenciesFixture.cs b/source/Octopus.Client.E2ETests/InlinedDependenciesFixture.cs index fd488f594..01a9e9b50 100644 --- a/source/Octopus.Client.E2ETests/InlinedDependenciesFixture.cs +++ b/source/Octopus.Client.E2ETests/InlinedDependenciesFixture.cs @@ -7,6 +7,13 @@ namespace Octopus.Client.E2ETests { + /// + /// These tests are designed to ensure that we keep our published artifact working in the way we expect it to + /// * is a single dll that can be referenced from powershell + /// * actually works + /// If you find yourself changing these tests, it's very likely you'll need to change + /// https://github.com/OctopusDeploy/docs/blob/master/docs/octopus-rest-api/octopus.client.md + /// [TestFixture] public class InlinedDependenciesFixture { diff --git a/source/Octopus.Client.E2ETests/NuSpecDependenciesFixture.cs b/source/Octopus.Client.E2ETests/NuSpecDependenciesFixture.cs index 7ebaa5e81..56eb69be2 100644 --- a/source/Octopus.Client.E2ETests/NuSpecDependenciesFixture.cs +++ b/source/Octopus.Client.E2ETests/NuSpecDependenciesFixture.cs @@ -9,6 +9,10 @@ namespace Octopus.Client.E2ETests { /// + /// These tests are designed to ensure that we keep our published artifact working in the way we expect it to + /// * is a single dll that can be referenced from powershell + /// * inlines dependencies properly + /// * doesn't pull down unnecessary dependencies /// If you find yourself changing these tests, it's very likely you'll need to change /// https://github.com/OctopusDeploy/docs/blob/master/docs/octopus-rest-api/octopus.client.md /// diff --git a/source/Octopus.Client.E2ETests/PowerShellExecutionFixture.cs b/source/Octopus.Client.E2ETests/PowerShellExecutionFixture.cs index 50fd1911e..96dbf40a6 100644 --- a/source/Octopus.Client.E2ETests/PowerShellExecutionFixture.cs +++ b/source/Octopus.Client.E2ETests/PowerShellExecutionFixture.cs @@ -7,6 +7,14 @@ namespace Octopus.Client.E2ETests { + /// + /// These tests are designed to ensure that we keep our published artifact working in the way we expect it to + /// * is a single dll that can be referenced from powershell + /// * inlines dependencies properly + /// * doesn't pull down unnecessary dependencies + /// If you find yourself changing these tests, it's very likely you'll need to change + /// https://github.com/OctopusDeploy/docs/blob/master/docs/octopus-rest-api/octopus.client.md + /// [TestFixture] public class PowerShellExecutionFixture {