Created
February 25, 2018 10:43
-
-
Save dnno/ff05c4bd3e6c80a0aba18a5e55811f82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @ClassRule | |
| public static InfinispanContainer infinispan = | |
| new InfinispanContainer() | |
| .withProtocolVersion(ProtocolVersion.PROTOCOL_VERSION_21) | |
| .withCaches("testCache"); | |
| @Test | |
| public void should_get_existing_cache() { | |
| assertNotNull(infinispan.getCacheManager().getCache("testCache")); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment