ProductRepoTest

1

tests

0

failures

0

ignored

0.014s

duration

100%

successful

Tests

Test Duration Result
save_product_and_profile() 0.014s passed

Standard output

2025-01-11T20:00:21.697-06:00  INFO 29436 --- [demo] [    Test worker] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [org.zheng.demo.repository.ProductRepoTest]: ProductRepoTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2025-01-11T20:00:21.711-06:00  INFO 29436 --- [demo] [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration org.zheng.demo.DemoApplication for test class org.zheng.demo.repository.ProductRepoTest
Hibernate: 
    insert 
    into
        t_product
        (name, id) 
    values
        (?, default)
2025-01-11T20:00:21.719-06:00 TRACE 29436 --- [demo] [    Test worker] org.hibernate.orm.jdbc.bind              : binding parameter (1:VARCHAR) <- [product]
Hibernate: 
    insert 
    into
        t_product_profile
        (product_detail, id) 
    values
        (?, default)
2025-01-11T20:00:21.722-06:00 TRACE 29436 --- [demo] [    Test worker] org.hibernate.orm.jdbc.bind              : binding parameter (1:VARCHAR) <- [some details]