Skip to content

Commit d9fffc1

Browse files
committed
Add Test Method Stubs for Whole Interface
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 62b2701 commit d9fffc1

14 files changed

+517
-0
lines changed

src/test/java/io/securecodebox/persistence/defectdojo/service/EndpointServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.Endpoint;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -74,4 +75,40 @@ void search() throws URISyntaxException, IOException {
7475
))
7576
);
7677
}
78+
79+
@Test
80+
@Disabled("TODO: Implement test.")
81+
void search_withQueryParams() {
82+
}
83+
84+
@Test
85+
@Disabled("TODO: Implement test.")
86+
void get_byId() {
87+
}
88+
89+
90+
@Test
91+
@Disabled("TODO: Implement test.")
92+
void searchUnique_withSearchObject() {
93+
}
94+
95+
@Test
96+
@Disabled("TODO: Implement test.")
97+
void searchUnique_withQueryParams() {
98+
}
99+
100+
@Test
101+
@Disabled("TODO: Implement test.")
102+
void create() {
103+
}
104+
105+
@Test
106+
@Disabled("TODO: Implement test.")
107+
void delete() {
108+
}
109+
110+
@Test
111+
@Disabled("TODO: Implement test.")
112+
void update() {
113+
}
77114
}

src/test/java/io/securecodebox/persistence/defectdojo/service/EngagementServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.Engagement;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -85,4 +86,40 @@ void search() throws URISyntaxException, IOException {
8586
))
8687
);
8788
}
89+
90+
@Test
91+
@Disabled("TODO: Implement test.")
92+
void search_withQueryParams() {
93+
}
94+
95+
@Test
96+
@Disabled("TODO: Implement test.")
97+
void get_byId() {
98+
}
99+
100+
101+
@Test
102+
@Disabled("TODO: Implement test.")
103+
void searchUnique_withSearchObject() {
104+
}
105+
106+
@Test
107+
@Disabled("TODO: Implement test.")
108+
void searchUnique_withQueryParams() {
109+
}
110+
111+
@Test
112+
@Disabled("TODO: Implement test.")
113+
void create() {
114+
}
115+
116+
@Test
117+
@Disabled("TODO: Implement test.")
118+
void delete() {
119+
}
120+
121+
@Test
122+
@Disabled("TODO: Implement test.")
123+
void update() {
124+
}
88125
}

src/test/java/io/securecodebox/persistence/defectdojo/service/FindingServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package io.securecodebox.persistence.defectdojo.service;
66

77
import io.securecodebox.persistence.defectdojo.model.Finding;
8+
import org.junit.jupiter.api.Disabled;
89
import org.junit.jupiter.api.Test;
910

1011
import java.io.IOException;
@@ -64,4 +65,40 @@ void search() throws URISyntaxException, IOException {
6465
))
6566
);
6667
}
68+
69+
@Test
70+
@Disabled("TODO: Implement test.")
71+
void search_withQueryParams() {
72+
}
73+
74+
@Test
75+
@Disabled("TODO: Implement test.")
76+
void get_byId() {
77+
}
78+
79+
80+
@Test
81+
@Disabled("TODO: Implement test.")
82+
void searchUnique_withSearchObject() {
83+
}
84+
85+
@Test
86+
@Disabled("TODO: Implement test.")
87+
void searchUnique_withQueryParams() {
88+
}
89+
90+
@Test
91+
@Disabled("TODO: Implement test.")
92+
void create() {
93+
}
94+
95+
@Test
96+
@Disabled("TODO: Implement test.")
97+
void delete() {
98+
}
99+
100+
@Test
101+
@Disabled("TODO: Implement test.")
102+
void update() {
103+
}
67104
}

src/test/java/io/securecodebox/persistence/defectdojo/service/GroupMemberServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.GroupMember;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -81,4 +82,40 @@ void search() throws URISyntaxException, IOException {
8182
))
8283
);
8384
}
85+
86+
@Test
87+
@Disabled("TODO: Implement test.")
88+
void search_withQueryParams() {
89+
}
90+
91+
@Test
92+
@Disabled("TODO: Implement test.")
93+
void get_byId() {
94+
}
95+
96+
97+
@Test
98+
@Disabled("TODO: Implement test.")
99+
void searchUnique_withSearchObject() {
100+
}
101+
102+
@Test
103+
@Disabled("TODO: Implement test.")
104+
void searchUnique_withQueryParams() {
105+
}
106+
107+
@Test
108+
@Disabled("TODO: Implement test.")
109+
void create() {
110+
}
111+
112+
@Test
113+
@Disabled("TODO: Implement test.")
114+
void delete() {
115+
}
116+
117+
@Test
118+
@Disabled("TODO: Implement test.")
119+
void update() {
120+
}
84121
}

src/test/java/io/securecodebox/persistence/defectdojo/service/GroupServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.Group;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -58,4 +59,40 @@ void search() throws URISyntaxException, IOException {
5859
))
5960
);
6061
}
62+
63+
@Test
64+
@Disabled("TODO: Implement test.")
65+
void search_withQueryParams() {
66+
}
67+
68+
@Test
69+
@Disabled("TODO: Implement test.")
70+
void get_byId() {
71+
}
72+
73+
74+
@Test
75+
@Disabled("TODO: Implement test.")
76+
void searchUnique_withSearchObject() {
77+
}
78+
79+
@Test
80+
@Disabled("TODO: Implement test.")
81+
void searchUnique_withQueryParams() {
82+
}
83+
84+
@Test
85+
@Disabled("TODO: Implement test.")
86+
void create() {
87+
}
88+
89+
@Test
90+
@Disabled("TODO: Implement test.")
91+
void delete() {
92+
}
93+
94+
@Test
95+
@Disabled("TODO: Implement test.")
96+
void update() {
97+
}
6198
}

src/test/java/io/securecodebox/persistence/defectdojo/service/ProductGroupServiceTest.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,40 @@ void search() throws URISyntaxException, IOException {
4242
))
4343
);
4444
}
45+
46+
@Test
47+
@Disabled("TODO: Implement test.")
48+
void search_withQueryParams() {
49+
}
50+
51+
@Test
52+
@Disabled("TODO: Implement test.")
53+
void get_byId() {
54+
}
55+
56+
57+
@Test
58+
@Disabled("TODO: Implement test.")
59+
void searchUnique_withSearchObject() {
60+
}
61+
62+
@Test
63+
@Disabled("TODO: Implement test.")
64+
void searchUnique_withQueryParams() {
65+
}
66+
67+
@Test
68+
@Disabled("TODO: Implement test.")
69+
void create() {
70+
}
71+
72+
@Test
73+
@Disabled("TODO: Implement test.")
74+
void delete() {
75+
}
76+
77+
@Test
78+
@Disabled("TODO: Implement test.")
79+
void update() {
80+
}
4581
}

src/test/java/io/securecodebox/persistence/defectdojo/service/ProductServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.Product;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -85,4 +86,40 @@ void search() throws URISyntaxException, IOException {
8586
))
8687
);
8788
}
89+
90+
@Test
91+
@Disabled("TODO: Implement test.")
92+
void search_withQueryParams() {
93+
}
94+
95+
@Test
96+
@Disabled("TODO: Implement test.")
97+
void get_byId() {
98+
}
99+
100+
101+
@Test
102+
@Disabled("TODO: Implement test.")
103+
void searchUnique_withSearchObject() {
104+
}
105+
106+
@Test
107+
@Disabled("TODO: Implement test.")
108+
void searchUnique_withQueryParams() {
109+
}
110+
111+
@Test
112+
@Disabled("TODO: Implement test.")
113+
void create() {
114+
}
115+
116+
@Test
117+
@Disabled("TODO: Implement test.")
118+
void delete() {
119+
}
120+
121+
@Test
122+
@Disabled("TODO: Implement test.")
123+
void update() {
124+
}
88125
}

src/test/java/io/securecodebox/persistence/defectdojo/service/ProductTypeServiceTest.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
package io.securecodebox.persistence.defectdojo.service;
55

66
import io.securecodebox.persistence.defectdojo.model.ProductType;
7+
import org.junit.jupiter.api.Disabled;
78
import org.junit.jupiter.api.Test;
89

910
import java.io.IOException;
@@ -51,4 +52,40 @@ void search() throws URISyntaxException, IOException {
5152
))
5253
);
5354
}
55+
56+
@Test
57+
@Disabled("TODO: Implement test.")
58+
void search_withQueryParams() {
59+
}
60+
61+
@Test
62+
@Disabled("TODO: Implement test.")
63+
void get_byId() {
64+
}
65+
66+
67+
@Test
68+
@Disabled("TODO: Implement test.")
69+
void searchUnique_withSearchObject() {
70+
}
71+
72+
@Test
73+
@Disabled("TODO: Implement test.")
74+
void searchUnique_withQueryParams() {
75+
}
76+
77+
@Test
78+
@Disabled("TODO: Implement test.")
79+
void create() {
80+
}
81+
82+
@Test
83+
@Disabled("TODO: Implement test.")
84+
void delete() {
85+
}
86+
87+
@Test
88+
@Disabled("TODO: Implement test.")
89+
void update() {
90+
}
5491
}

0 commit comments

Comments
 (0)