Added a usage description

This commit is contained in:
Reinhard Prechtl 2017-12-07 18:34:49 +01:00
parent 0aad592ea3
commit d496e58fd3
2 changed files with 22 additions and 7 deletions

View file

@ -6,3 +6,17 @@ use a generic container to launch other images. This repository contains an impl
for the Infinispan cache server. It provides an API that is aimed to help you configure the container.
At the moment this is a rudimentary implementation and by no means complete. Feel free to suggest changes!
# Usage
For general usage info on Testcontainers please look at the examples of the project.
```
@ClassRule
public static InfinispanContainer infinispan = InfinispanContainerFactory
.standalone("9.1.3.Final")
.configurationFile("infinispan-standalone.xml")
.expose()
.hotrod()
.build();
```

View file

@ -11,7 +11,8 @@ import static org.junit.Assert.assertNotNull;
public class InfinispanContainerIntegrationTest {
@ClassRule
public static InfinispanContainer infinispan = InfinispanContainerFactory
public static InfinispanContainer infinispan =
InfinispanContainerFactory
.standalone("9.1.3.Final")
.configurationFile("infinispan-standalone.xml")
.expose()