Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/service/CustomLogicService.java @ 5:227f3105fedd
Erster Unit Test, der das repository einfach nur mockt
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 13 Aug 2020 15:58:57 +0200 |
parents | 60afb461bf6c |
children |
line wrap: on
line source
package de.comline.spring.service; import org.springframework.stereotype.Service; @Service public class CustomLogicService { public String doit() { return "this is the custom logic"; } }