File tree 4 files changed +1
-5
lines changed
src/test/java/com/iluwatar/templateview
4 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 41
41
</dependency >
42
42
<dependency >
43
43
<groupId >org.mockito</groupId >
44
- <artifactId >mockito-inline </artifactId >
44
+ <artifactId >mockito-core </artifactId >
45
45
<scope >test</scope >
46
46
</dependency >
47
47
</dependencies >
Original file line number Diff line number Diff line change 31
31
class ContactPageViewTest {
32
32
33
33
@ Test
34
- @ Disabled
35
34
void testRenderDynamicContent () {
36
35
// Create a spy for ContactPageView
37
36
ContactPageView contactPage = spy (ContactPageView .class );
Original file line number Diff line number Diff line change 31
31
class HomePageViewTest {
32
32
33
33
@ Test
34
- @ Disabled
35
34
void testRenderDynamicContent () {
36
35
// Create a spy for HomePageView
37
36
HomePageView homePage = spy (HomePageView .class );
Original file line number Diff line number Diff line change 31
31
class TemplateViewTest {
32
32
33
33
@ Test
34
- @ Disabled
35
34
void testRenderHomePage () {
36
35
// Create a spy for HomePageView
37
36
TemplateView homePage = spy (HomePageView .class );
@@ -46,7 +45,6 @@ void testRenderHomePage() {
46
45
}
47
46
48
47
@ Test
49
- @ Disabled
50
48
void testRenderContactPage () {
51
49
// Create a spy for ContactPageView
52
50
TemplateView contactPage = spy (ContactPageView .class );
You can’t perform that action at this time.
0 commit comments