-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
feat: Add Apache Cassandra module #1367
Conversation
* Added support for Cassandra 5.0.3 TestConainer
✅ Deploy Preview for testcontainers-dotnet ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! I made a few minor changes to align with the repository standards, such as file-scoped namespaces, indentation, etc. Overall, the PR looks good. I have one question before merging it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks 🙏.
What does this PR do?
This PR adds an Apache Cassandra test container for .NET. The implementation follows a similar approach to the Apache Cassandra test container for Java.
Why is it important?
.NET also has excellent mature and stable support for connecting to Cassandra. Therefore, this addition enables developers who use Cassandra with .NET to write end-to-end acceptance and integration tests using the familiar Testcontainers paradigm, just as their Java counterparts do.
Related issues