From 29fd4a1d2ec1b2f37b01a3cc7cd8bc333f21630f Mon Sep 17 00:00:00 2001 From: Pekka Helenius Date: Wed, 14 Oct 2020 13:22:20 +0300 Subject: [PATCH] Add dummy BookstoreApplicationTests class Signed-off-by: Pekka Helenius --- .../bookstore/BookstoreApplicationTests.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/bookstore/src/test/java/com/fjordtek/bookstore/BookstoreApplicationTests.java b/bookstore/src/test/java/com/fjordtek/bookstore/BookstoreApplicationTests.java index 3c815d7..ebf5c16 100644 --- a/bookstore/src/test/java/com/fjordtek/bookstore/BookstoreApplicationTests.java +++ b/bookstore/src/test/java/com/fjordtek/bookstore/BookstoreApplicationTests.java @@ -1,8 +1,20 @@ +// Pekka Helenius , Fjordtek 2020 + package com.fjordtek.bookstore; import org.junit.jupiter.api.Test; +import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * + * TODO: N/A + * + * @author Pekka Helenius + */ +@RunWith(SpringRunner.class) @SpringBootTest class BookstoreApplicationTests {