comparison spring-boot-playground/src/main/java/de/comline/spring/entity/Movie.java @ 8:7ce4367b50bc

Ein echter Unit Test, der eine in-memory H2 als Teil vom Test startet, das Schema mit liquibase erzeugt und nach dem Test wieder stoppt. Das alles ohne die Web Controller zu starten.
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 13 Aug 2020 16:51:05 +0200
parents 92d52e4ac567
children
comparison
equal deleted inserted replaced
7:0c3494137a82 8:7ce4367b50bc
27 } 27 }
28 28
29 public Movie(String title) { 29 public Movie(String title) {
30 this.title = title; 30 this.title = title;
31 } 31 }
32
33 public long getId() {
34 return id;
35 }
32 36
33 public String getTitle() { 37 public String getTitle() {
34 return title; 38 return title;
35 } 39 }
36 } 40 }