Skip to content

Commit

Permalink
757 - Integration test for Hot Reload of nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Chandler committed Nov 13, 2024
1 parent 96b1d96 commit a1f9973
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.any;

public class TestNodeAddition extends AbstractCassandraCluster
public class ITNodeAddition extends AbstractCassandraCluster
{
private static final Logger LOG = LoggerFactory.getLogger(TestNodeAddition.class);
private static final Logger LOG = LoggerFactory.getLogger(ITNodeAddition.class);
@BeforeClass
public static void setup() throws InterruptedException {
public static void setup() throws InterruptedException
{
Path dockerComposePath = Paths.get("")
.toAbsolutePath()
.getParent()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
public class TestNodeRemoval extends AbstractCassandraCluster
public class ITNodeRemoval extends AbstractCassandraCluster
{
private static final Logger LOG = LoggerFactory.getLogger(TestNodeRemoval.class);
private static final Logger LOG = LoggerFactory.getLogger(ITNodeRemoval.class);
@Test
public void testNodeDecommissionedFromCluster() throws InterruptedException, IOException, ConfigurationException, EcChronosException
{
Expand Down

0 comments on commit a1f9973

Please sign in to comment.