https://github.com/gdatasoftwareag/testcontainers-java-module-mssqlserver
Java module for testcontainers.org to use MS SQL Server as testcontainer.
https://github.com/gdatasoftwareag/testcontainers-java-module-mssqlserver
Last synced: 6 months ago
JSON representation
Java module for testcontainers.org to use MS SQL Server as testcontainer.
- Host: GitHub
- URL: https://github.com/gdatasoftwareag/testcontainers-java-module-mssqlserver
- Owner: GDATASoftwareAG
- License: mit
- Created: 2017-06-27T08:42:04.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T08:23:50.000Z (over 7 years ago)
- Last Synced: 2025-01-21T14:12:43.824Z (over 1 year ago)
- Language: Java
- Size: 64.5 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# PERMANENTLY MOVED TO TESTCONTAINERS REPOSITORY
See https://github.com/testcontainers/testcontainers-java/tree/master/modules/mssqlserver
# TestContainers MS SQL Server Module
Testcontainers module for the MS SQL Server database.
See [testcontainers.org](https://www.testcontainers.org) for more information about Testcontainers.
## Usage example
Running MS SQL Server as a stand-in for in a test:
```java
public class SomeTest {
@Rule
public MSSQLServerContainer mssqlserver = new MSSQLServerContainer();
@Test
public void someTestMethod() {
String url = mssqlserver.getJdbcUrl();
... create a connection and run test as normal
```
## Dependency information
### Maven
```
org.testcontainers
mssqlserver
1.4.3
```
### Gradle
```
compile group: 'org.testcontainers', name: 'mssqlserver', version: '1.4.3'
```
## License
See [LICENSE](LICENSE).
## Copyright
Copyright (c) 2017 - 2019 G DATA Software AG and other authors.
See [AUTHORS](AUTHORS) for contributors.