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
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public class Category
// Run Type
public const string RunType = "RunType";
public const string LiveOnly = "LiveOnly";
public const string Manual = "Manual";
//Uncomment when we need to tag on only run under mock
//public const string MockedOnly = "MockedOnly";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public LoginCmdletTests()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void LoginWithSubscriptionAndTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -61,7 +61,7 @@ public void LoginWithSubscriptionAndTenant()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void LoginWithInvalidSubscriptionAndTenantThrowsCloudException()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -77,7 +77,7 @@ public void LoginWithInvalidSubscriptionAndTenantThrowsCloudException()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void LoginWithSubscriptionAndNoTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -93,9 +93,9 @@ public void LoginWithSubscriptionAndNoTenant()
Assert.NotNull(AzureRMCmdlet.DefaultProfile.Context);
Assert.Equal("microsoft.com", AzureRMCmdlet.DefaultProfile.Context.Tenant.Domain);
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void LoginWithNoSubscriptionAndNoTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand All @@ -112,7 +112,7 @@ public void LoginWithNoSubscriptionAndNoTenant()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void LoginWithNoSubscriptionAndTenant()
{
var cmdlt = new AddAzureRMAccountCommand();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public TenantCmdletTests()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void GetTenantWithTenantParameter()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand All @@ -62,7 +62,7 @@ public void GetTenantWithTenantParameter()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void GetTenantWithDomainParameter()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand All @@ -82,7 +82,7 @@ public void GetTenantWithDomainParameter()
}

[Fact]
[Trait(Category.AcceptanceType, Category.Manual)]
[Trait(Category.RunType, Category.LiveOnly)]
public void GetTenantWithoutParameters()
{
var cmdlt = new GetAzureRMTenantCommand();
Expand Down