Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cognitive Service PrivateEndpointConnection testcase name abbreviation completed #30927

Merged
merged 10 commits into from
Sep 5, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

namespace Azure.ResourceManager.CognitiveServices.Tests
{
public class CognitiveServicesPrivateEndpointConnectionCollectionTests : CognitiveServicesManagementTestBase
public class PEConnectionCollectionTests : CognitiveServicesManagementTestBase
{
public CognitiveServicesPrivateEndpointConnectionCollectionTests(bool isAsync)
public PEConnectionCollectionTests(bool isAsync)
: base(isAsync)//, RecordedTestMode.Record)
{
}
Expand All @@ -27,7 +27,7 @@ private async Task<CognitiveServicesPrivateEndpointConnectionCollection> GetCogn
}

[TestCase]
public async Task CognitiveServicesPrivateEndpointConnectionCollectionApiTests()
public async Task PEConnectionCollectionApiTests()
{
//1.GetAll
var container = await GetCognitiveServicesPrivateEndpointConnectionCollectionAsync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

namespace Azure.ResourceManager.CognitiveServices.Tests
{
public class CognitiveServicesPrivateEndpointConnectionResourceTests : CognitiveServicesManagementTestBase
public class PEConnectionResourceTests : CognitiveServicesManagementTestBase
{
public CognitiveServicesPrivateEndpointConnectionResourceTests(bool isAsync)
public PEConnectionResourceTests(bool isAsync)
: base(isAsync)//, RecordedTestMode.Record)
{
}
Expand All @@ -28,7 +28,7 @@ private async Task<CognitiveServicesPrivateEndpointConnectionCollection> GetCogn
}

[TestCase]
public async Task CognitiveServicesPrivateEndpointConnectionResourceApiTests()
public async Task PEConnectionResourceApiTests()
{
//1.Get
var collection = await GetCognitiveServicesPrivateEndpointConnectionCollectionAsync();
Expand Down