An open API service indexing awesome lists of open source software.

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.

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.