package com.baeldung.hikaricp; import java.util.List; import org.junit.Ignore; import org.junit.Test; import java.sql.SQLException; import static org.junit.Assert.assertEquals; public class HikariCPUnitTest { @Test @Ignore public void givenConnection_thenFetchDbData() throws SQLException { List employees = HikariCPDemo.fetchData(); assertEquals(4, employees.size()); } }