LogAspectTest

1

tests

0

failures

0

ignored

0.007s

duration

100%

successful

Tests

Test Duration Result
should_call_around() 0.007s passed

Standard output

2021-06-10 19:28:05.797  INFO 13839 --- [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [playground.spring.aop.LogAspectTest], using SpringBootContextLoader
2021-06-10 19:28:05.798  INFO 13839 --- [    Test worker] o.s.t.c.support.AbstractContextLoader    : Could not detect default resource locations for test class [playground.spring.aop.LogAspectTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2021-06-10 19:28:05.799  INFO 13839 --- [    Test worker] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [playground.spring.aop.LogAspectTest]: LogAspectTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2021-06-10 19:28:05.802  INFO 13839 --- [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration playground.spring.Application for test class playground.spring.aop.LogAspectTest
2021-06-10 19:28:05.806  INFO 13839 --- [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2021-06-10 19:28:05.807  INFO 13839 --- [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@40222f2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@74340738, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4e071fe4, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@949d27e, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1c496417, org.springframework.test.context.support.DirtiesContextTestExecutionListener@4810bd61, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3e9e63b8, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@79838c37, org.springframework.test.context.event.EventPublishingTestExecutionListener@2e3d36cc, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@638b6ddf, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2e4551b5, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@4bc2927e, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@c0e569c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@34533757, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@301f0091]

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.5.0)

2021-06-10 19:28:05.871  INFO 13839 --- [    Test worker] playground.spring.aop.LogAspectTest      : Starting LogAspectTest using Java 11.0.2 on travis-job-c3916ad0-4bcb-4d46-9b22-3ba711191077 with PID 13839 (started by travis in /home/travis/build/pojozhang/playground/solutions/java)
2021-06-10 19:28:05.873  INFO 13839 --- [    Test worker] playground.spring.aop.LogAspectTest      : No active profile set, falling back to default profiles: default
2021-06-10 19:28:06.102  INFO 13839 --- [    Test worker] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-06-10 19:28:06.112  INFO 13839 --- [    Test worker] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 9 ms. Found 1 JPA repository interfaces.
2021-06-10 19:28:06.363  INFO 13839 --- [    Test worker] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-06-10 19:28:06.375  INFO 13839 --- [    Test worker] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Starting...
2021-06-10 19:28:06.378  INFO 13839 --- [    Test worker] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Start completed.
2021-06-10 19:28:06.378  INFO 13839 --- [    Test worker] org.hibernate.dialect.Dialect            : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
Hibernate: drop table if exists film CASCADE 
Hibernate: create table film (id bigint generated by default as identity, name varchar(255), primary key (id))
2021-06-10 19:28:06.419  INFO 13839 --- [    Test worker] o.h.e.t.j.p.i.JtaPlatformInitiator       : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-06-10 19:28:06.420  INFO 13839 --- [    Test worker] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-06-10 19:28:06.821  INFO 13839 --- [    Test worker] playground.spring.aop.LogAspectTest      : Started LogAspectTest in 1.01 seconds (JVM running for 81.475)
2021-06-10 19:28:06.822  INFO 13839 --- [    Test worker] o.s.b.a.ApplicationAvailabilityBean      : Application availability state LivenessState changed to CORRECT
2021-06-10 19:28:06.823  INFO 13839 --- [    Test worker] o.s.b.a.ApplicationAvailabilityBean      : Application availability state ReadinessState changed to ACCEPTING_TRAFFIC