Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/HPCCache/HPCCache.Test/Fixtures/HpcCacheTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public HpcCacheTestFixture()
{
using (this.Context = new HpcCacheTestContext(this.GetType().Name))
{
this.Context = new HpcCacheTestContext(this.GetType().Name);
try
{
StorageCacheManagementClient storagecacheMgmtClient = this.Context.GetClient<StorageCacheManagementClient>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public StorageAccountFixture(HpcCacheTestFixture fixture)
this.fixture = fixture;
using (this.Context = new HpcCacheTestContext(this.GetType().Name))
{
this.Context = new HpcCacheTestContext(this.GetType().Name);
this.StorageTarget = this.AddClfsStorageTarget(this.Context);
Match clfsTargetMatch = ClfsTargetRegex.Match(this.StorageTarget.Clfs.Target);
var storageAccountName = clfsTargetMatch.Groups["StorageAccountName"].Value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class DenyAssignmentTests : ResourceTestRunner
public class DenyAssignmentTests : ResourcesTestRunner
{
public XunitTracingInterceptor _logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class DeploymentScriptsTests : ResourceTestRunner
public class DeploymentScriptsTests : ResourcesTestRunner
{
public DeploymentScriptsTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class DeploymentTests : ResourceTestRunner
public class DeploymentTests : ResourcesTestRunner
{
public DeploymentTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
using Xunit;
using Xunit.Abstractions;

public class DeploymentWhatIfTests : ResourceTestRunner
public class DeploymentWhatIfTests : ResourcesTestRunner
{
public DeploymentWhatIfTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class InvokeResourceActionTests : ResourceTestRunner
public class InvokeResourceActionTests : ResourcesTestRunner
{
public InvokeResourceActionTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class LocationTests: ResourceTestRunner
public class LocationTests: ResourcesTestRunner
{
public LocationTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ManagedApplicationDefinitionTests : ResourceTestRunner
public class ManagedApplicationDefinitionTests : ResourcesTestRunner
{
public ManagedApplicationDefinitionTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ManagedApplicationTests : ResourceTestRunner
public class ManagedApplicationTests : ResourcesTestRunner
{
public ManagedApplicationTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ManagementGroupsTests : ResourceTestRunner
public class ManagementGroupsTests : ResourcesTestRunner
{
public ManagementGroupsTests(Xunit.Abstractions.ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
using WindowsAzure.Commands.ScenarioTest;
using Xunit;
using Xunit.Abstractions;
public class MoveResourceTest : ResourceTestRunner
public class MoveResourceTest : ResourcesTestRunner
{
public MoveResourceTest(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class PolicyAliasNamespaceMatchTest : ResourceTestRunner
public class PolicyAliasNamespaceMatchTest : ResourcesTestRunner
{
public PolicyAliasNamespaceMatchTest(ITestOutputHelper output) : base(output)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resources.Test/ScenarioTests/PolicyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class PolicyTests : ResourceTestRunner
public class PolicyTests : ResourcesTestRunner
{
public PolicyTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
using Xunit;
using Xunit.Abstractions;

public class ProviderFeatureTests : ResourceTestRunner
public class ProviderFeatureTests : ResourcesTestRunner
{
public ProviderFeatureTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
using Xunit;
using Xunit.Abstractions;

public class ProviderTests : ResourceTestRunner
public class ProviderTests : ResourcesTestRunner
{
public ProviderTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ResourceGroupTests : ResourceTestRunner
public class ResourceGroupTests : ResourcesTestRunner
{
public ResourceGroupTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ResourceLockTests : ResourceTestRunner
public class ResourceLockTests : ResourcesTestRunner
{
public ResourceLockTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ResourceManagementPrivateLinksTests : ResourceTestRunner
public class ResourceManagementPrivateLinksTests : ResourcesTestRunner
{
public ResourceManagementPrivateLinksTests(Xunit.Abstractions.ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ResourceTests : ResourceTestRunner
public class ResourceTests : ResourcesTestRunner
{
public ResourceTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class ResourceTestRunner
public class ResourcesTestRunner
{
protected readonly ITestRunner TestRunner;

protected ResourceTestRunner(ITestOutputHelper output)
protected ResourcesTestRunner(ITestOutputHelper output)
{
TestRunner = TestManager.CreateInstance(output)
.WithNewPsScriptFilename($"{GetType().Name}.ps1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class RoleAssignmentTests : ResourceTestRunner
public class RoleAssignmentTests : ResourcesTestRunner
{
public XunitTracingInterceptor _logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class RoleDefinitionTests : ResourceTestRunner
public class RoleDefinitionTests : ResourcesTestRunner
{
public RoleDefinitionTests(ITestOutputHelper output) : base(output)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resources.Test/ScenarioTests/TagTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class TagTests : ResourceTestRunner
public class TagTests : ResourcesTestRunner
{
public TagTests(ITestOutputHelper output) : base(output)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests
{
public class TemplateSpecTests : ResourceTestRunner
public class TemplateSpecTests : ResourcesTestRunner
{
public TemplateSpecTests(ITestOutputHelper output) : base(output)
{
Expand Down