8000 feat: Merging cluster tests for orgs api by AsabuHere · Pull Request #760 · twilio/twilio-csharp · GitHub
[go: up one dir, main page]

Skip to content

feat: Merging cluster tests for orgs api #760

8000
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

Merged
merged 7 commits into from
Sep 25, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update ClusterTest.cs
  • Loading branch information
AsabuHere authored Sep 25, 2024
commit fae7e281ba4ab83fa51c8317f1568f9225228be1
3 changes: 2 additions & 1 deletion test/Twilio.Test/ClusterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Twilio.Rest.Chat.V2;
using Twilio.Rest.Chat.V2.Service;
using Twilio.Rest.Events.V1;
using Twilio.Rest.PreviewIam;
using System.Linq;
namespace Twilio.Tests
{
Expand Down Expand Up @@ -134,13 +135,13 @@
[Category("ClusterTest")]
public void TestFetchingOrgsAccounts()
{
Twilio.Base.BearerToken.TokenResourceSet<Twilio.Rest.PreviewIam.Organizations.AccountResource> accountList = null;

Check failure on line 138 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)

Check failure on line 138 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)
accountList = Twilio.Rest.PreviewIam.Organizations.AccountResource.Read(pathOrganizationSid: orgsSid);

Check failure on line 139 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)

Check failure on line 139 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The type or namespace name 'Organizations' does not exist in the namespace 'Twilio.Rest.PreviewIam' (are you missing an assembly reference?)
Assert.IsNotNull(accountList.ElementAt(0).FriendlyName);

var userList = UserResource.Read(pathOrganizationSid: orgsSid);

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this a 8000 nnotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'

Check failure on line 142 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

The best overload for 'Read' does not have a parameter named 'pathOrganizationSid'
Assert.IsNotNull(userList.ElementAt(0).Id);

Check failure on line 143 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 143 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 143 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 143 in test/Twilio.Test/ClusterTest.cs

View workflow job for this annotation

GitHub Actions / Test

'UserResource' does not contain a definition for 'Id' and no accessible extension method 'Id' accepting a first argument of type 'UserResource' could be found (are you missing a using directive or an assembly reference?)

}
}
}
}
Loading
0