Added test to implement and some tests failed rightnow
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
package com.plannaplan.controllers;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class UsersControllerTest {
|
||||
@Test
|
||||
public void shouldRestrun200OK() {
|
||||
assertTrue(false);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldRestrunForbiden() {
|
||||
assertTrue(false);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldFailedDueToMissingParam() {
|
||||
assertTrue(false);
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.plannaplan.responses.mappers;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class UserResponseMappersTest {
|
||||
@Test
|
||||
public void shlouldMapListToResponseList() {
|
||||
assertTrue(false);
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.plannaplan.responses.models;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class SearchForStudentsResponseTest {
|
||||
@Test
|
||||
public void shouldMapUserToResponseElement() {
|
||||
assertTrue(false);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user