[JAVA-589] Reviewed build time (#8800)

* [JAVA-589] Reviewed build time

* Renamed HibernateTimeZoneTest to HibernateTimeZoneIntTest

* [JAVA-873] Extracted benchmarking part of unit test into its own LiveTest

* Revert "[JAVA-873] Extracted benchmarking part of unit test into its own LiveTest"

This reverts commit 10c05ebb7e43be0a04ed377c453f0aa92c81117c.

* [JAVA-906] Renamed PrimeNumberUnitTest to PrimeNumberManualTest in order to avoid it being runned

* [JAVA-906] Renamed HibernateTimeZoneIntTest to HibernateTimeZoneIntegrationTest

* [JAVA-906] Removed package-lock.json and added it to .gitignore
This commit is contained in:
François Dupire 2020-03-12 08:31:06 +01:00 committed by GitHub
parent 8be4255cbb
commit 5fbc94ae90
4 changed files with 4 additions and 18247 deletions

View File

@ -15,7 +15,7 @@ import java.util.logging.Logger;
import static org.junit.Assert.fail; import static org.junit.Assert.fail;
public class PrimeNumbersUnitTest { public class PrimeNumbersUnitManualTest {
private static Logger logger = Logger.getAnonymousLogger(); private static Logger logger = Logger.getAnonymousLogger();

View File

@ -14,6 +14,7 @@ node_modules/
npm-debug.log.* npm-debug.log.*
/.awcache/* /.awcache/*
/.cache-loader/* /.cache-loader/*
package-lock.json
###################### ######################
# SASS # SASS

File diff suppressed because it is too large Load Diff

View File

@ -20,11 +20,11 @@ import static java.lang.String.format;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Unit tests for the UTC Hibernate configuration. * Tests for the UTC Hibernate configuration.
*/ */
@RunWith(SpringRunner.class) @RunWith(SpringRunner.class)
@SpringBootTest(classes = BookstoreApp.class) @SpringBootTest(classes = BookstoreApp.class)
public class HibernateTimeZoneTest { public class HibernateTimeZoneIntegrationTest {
@Autowired @Autowired
private DateTimeWrapperRepository dateTimeWrapperRepository; private DateTimeWrapperRepository dateTimeWrapperRepository;