Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1.02 KB

README.md

File metadata and controls

22 lines (16 loc) · 1.02 KB

Hazelcast Testcontainer

Maven Central Build Status codecov Codacy Badge

Usage

Simple usage example:

@ClassRule
public static HazelcastContainer hazelcast = new HazelcastContainer();

@Test
public void test(){
    HazelcastInstance client = hazelcast.newClient();

    // do anything you want
}