-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Streamline xml serialisation to string #3208
Conversation
WalkthroughThis change set updates the TestNG framework by documenting and fixing issues related to XML conversion and thread pool configuration. The modifications include corrections in the Changes
Sequence Diagram(s)sequenceDiagram
participant Test as XmlVerifyTest
participant Suite as XmlSuite
participant Weaver as DefaultXmlWeaver
participant Parser as XML Parser
Test->>Suite: Configure thread pool attributes (true)
Test->>Weaver: Invoke asXml(Suite)
Weaver->>Weaver: Set properties ("use-global-thread-pool", "share-thread-pool-for-data-providers")
Weaver-->>Test: Return XML String
Test->>Parser: Parse XML String
Parser-->>Test: XML Document with attributes
Test->>Test: Assert attribute values are correct
Possibly related PRs
Suggested Reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
⏰ Context from checks skipped due to timeout of 90000ms (6)
🔇 Additional comments (4)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Closes #3177
Fixes #3177 .
Did you remember to?
CHANGES.txt
./gradlew autostyleApply
We encourage pull requests that:
If your pull request involves fixing SonarQube issues then we would suggest that you please discuss this with the
TestNG-dev before you spend time working on it.
Note: For more information on contribution guidelines please make sure you refer our Contributing section for detailed set of steps.
Summary by CodeRabbit
Bug Fixes
Enhancements
Tests