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 {