This commit is contained in:
+3
-1
@@ -11,7 +11,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Artist;
|
||||
import de.thpeetz.kontor.data.comics.Artist;
|
||||
import de.thpeetz.kontor.views.comics.ArtistForm;
|
||||
import de.thpeetz.kontor.views.comics.ArtistView;
|
||||
|
||||
@SpringBootTest
|
||||
class ArtistViewTest {
|
||||
|
||||
+2
-1
@@ -8,7 +8,8 @@ import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Artist;
|
||||
import de.thpeetz.kontor.data.comics.Artist;
|
||||
import de.thpeetz.kontor.views.comics.ArtistForm;
|
||||
|
||||
@SpringBootTest
|
||||
class ArtistformTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Comic;
|
||||
import de.thpeetz.kontor.data.comics.Comic;
|
||||
import de.thpeetz.kontor.views.comics.ComicForm;
|
||||
import de.thpeetz.kontor.views.comics.ComicView;
|
||||
|
||||
@SpringBootTest
|
||||
public class ComicViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.ComicWork;
|
||||
import de.thpeetz.kontor.data.comics.ComicWork;
|
||||
import de.thpeetz.kontor.views.comics.ComicWorkForm;
|
||||
import de.thpeetz.kontor.views.comics.ComicWorkView;
|
||||
|
||||
@SpringBootTest
|
||||
class ComicWorkViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Issue;
|
||||
import de.thpeetz.kontor.data.comics.Issue;
|
||||
import de.thpeetz.kontor.views.comics.IssueForm;
|
||||
import de.thpeetz.kontor.views.comics.IssueView;
|
||||
|
||||
@SpringBootTest
|
||||
public class IssueViewTest {
|
||||
|
||||
+3
-1
@@ -11,7 +11,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Publisher;
|
||||
import de.thpeetz.kontor.data.comics.Publisher;
|
||||
import de.thpeetz.kontor.views.comics.PublisherForm;
|
||||
import de.thpeetz.kontor.views.comics.PublisherView;
|
||||
|
||||
@SpringBootTest
|
||||
class PublisherViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.StoryArc;
|
||||
import de.thpeetz.kontor.data.comics.StoryArc;
|
||||
import de.thpeetz.kontor.views.comics.StoryArcForm;
|
||||
import de.thpeetz.kontor.views.comics.StoryArcView;
|
||||
|
||||
@SpringBootTest
|
||||
class StoryArcViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.TradePaperback;
|
||||
import de.thpeetz.kontor.data.comics.TradePaperback;
|
||||
import de.thpeetz.kontor.views.comics.TradePaperBackForm;
|
||||
import de.thpeetz.kontor.views.comics.TradePaperbackView;
|
||||
|
||||
@SpringBootTest
|
||||
class TradePaperbackViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Volume;
|
||||
import de.thpeetz.kontor.data.comics.Volume;
|
||||
import de.thpeetz.kontor.views.comics.VolumeForm;
|
||||
import de.thpeetz.kontor.views.comics.VolumeView;
|
||||
|
||||
@SpringBootTest
|
||||
class VolumeViewTest {
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.comics.data.Worktype;
|
||||
import de.thpeetz.kontor.data.comics.Worktype;
|
||||
import de.thpeetz.kontor.views.comics.WorktypeForm;
|
||||
import de.thpeetz.kontor.views.comics.WorktypeView;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
@Slf4j
|
||||
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.CardSet;
|
||||
import de.thpeetz.kontor.data.tysc.CardSet;
|
||||
import de.thpeetz.kontor.views.tysc.CardSetForm;
|
||||
import de.thpeetz.kontor.views.tysc.CardSetView;
|
||||
|
||||
@SpringBootTest
|
||||
class CardSetViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Card;
|
||||
import de.thpeetz.kontor.data.tysc.Card;
|
||||
import de.thpeetz.kontor.views.tysc.CardForm;
|
||||
import de.thpeetz.kontor.views.tysc.CardView;
|
||||
|
||||
@SpringBootTest
|
||||
class CardViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.FieldPosition;
|
||||
import de.thpeetz.kontor.data.tysc.FieldPosition;
|
||||
import de.thpeetz.kontor.views.tysc.PositionForm;
|
||||
import de.thpeetz.kontor.views.tysc.PositionView;
|
||||
|
||||
@SpringBootTest
|
||||
class FieldPositionViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Player;
|
||||
import de.thpeetz.kontor.data.tysc.Player;
|
||||
import de.thpeetz.kontor.views.tysc.PlayerForm;
|
||||
import de.thpeetz.kontor.views.tysc.PlayerView;
|
||||
|
||||
@SpringBootTest
|
||||
class PlayerViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Rooster;
|
||||
import de.thpeetz.kontor.data.tysc.Rooster;
|
||||
import de.thpeetz.kontor.views.tysc.RoosterForm;
|
||||
import de.thpeetz.kontor.views.tysc.RoosterView;
|
||||
|
||||
@SpringBootTest
|
||||
class RoosterViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Sport;
|
||||
import de.thpeetz.kontor.data.tysc.Sport;
|
||||
import de.thpeetz.kontor.views.tysc.SportForm;
|
||||
import de.thpeetz.kontor.views.tysc.SportView;
|
||||
|
||||
@SpringBootTest
|
||||
class SportViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Team;
|
||||
import de.thpeetz.kontor.data.tysc.Team;
|
||||
import de.thpeetz.kontor.views.tysc.TeamForm;
|
||||
import de.thpeetz.kontor.views.tysc.TeamView;
|
||||
|
||||
@SpringBootTest
|
||||
class TeamViewTest {
|
||||
+4
-2
@@ -1,4 +1,4 @@
|
||||
package de.thpeetz.kontor.tysc.views;
|
||||
package de.thpeetz.kontor.views.tysc;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
@@ -13,7 +13,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import com.vaadin.flow.component.grid.Grid;
|
||||
|
||||
import de.thpeetz.kontor.tysc.data.Vendor;
|
||||
import de.thpeetz.kontor.data.tysc.Vendor;
|
||||
import de.thpeetz.kontor.views.tysc.VendorForm;
|
||||
import de.thpeetz.kontor.views.tysc.VendorView;
|
||||
|
||||
@SpringBootTest
|
||||
class VendorViewTest {
|
||||
Reference in New Issue
Block a user