[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:
parent
8be4255cbb
commit
5fbc94ae90
|
@ -15,7 +15,7 @@ import java.util.logging.Logger;
|
|||
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
public class PrimeNumbersUnitTest {
|
||||
public class PrimeNumbersUnitManualTest {
|
||||
|
||||
private static Logger logger = Logger.getAnonymousLogger();
|
||||
|
|
@ -14,6 +14,7 @@ node_modules/
|
|||
npm-debug.log.*
|
||||
/.awcache/*
|
||||
/.cache-loader/*
|
||||
package-lock.json
|
||||
|
||||
######################
|
||||
# SASS
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -20,11 +20,11 @@ import static java.lang.String.format;
|
|||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Unit tests for the UTC Hibernate configuration.
|
||||
* Tests for the UTC Hibernate configuration.
|
||||
*/
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = BookstoreApp.class)
|
||||
public class HibernateTimeZoneTest {
|
||||
public class HibernateTimeZoneIntegrationTest {
|
||||
|
||||
@Autowired
|
||||
private DateTimeWrapperRepository dateTimeWrapperRepository;
|
Loading…
Reference in New Issue