[WIP] Integration Tests with AU support#470
Draft
rido-min wants to merge 4 commits into
Draft
Conversation
Added a "members" command to list conversation members in Program.cs and updated command docs. Adjusted IntegrationTests.slnx project order and added CreateConversation project. Introduced a 10s delay in IntegrationTestFixture.cs Dispose for cleanup. Updated README with a new dotnet test example.
The reference to CreateConversation.csproj was deleted from IntegrationTests.slnx, so it is no longer included in the solution.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new "members" command to the Teams bot sample, improves test coverage and reliability for member-related APIs, and adds documentation for running integration tests. The changes primarily focus on enabling and validating the retrieval of conversation members, updating tests to reflect current API behavior, and making the integration test suite easier to use and more robust.
Feature Additions:
"members"command to the Teams bot sample, allowing users to list current conversation members via a message. The command is also documented in the bot's help message. [1] [2]Testing Improvements:
Developer Experience:
README.md) to the integration test project, including instructions and sample runsettings for executing the test suite with different identities and environments.Disposemethod to help with resource cleanup and reduce flakiness.Miscellaneous:
These changes collectively enhance the Teams SDK sample's functionality, ensure the reliability of member-related APIs, and improve the usability of the integration test suite.