Added test to implement and some tests failed rightnow

This commit is contained in:
Filip Izydorczyk
2020-10-19 12:33:54 +02:00
parent 67c8b9bf25
commit 4b07793849
6 changed files with 62 additions and 5 deletions

View File

@ -57,4 +57,19 @@ public class UserServiceTest {
assertTrue(true);
}
}
@Test
public void shouldFindStudents() {
assertTrue(false);
}
@Test
public void shouldReturnAllStudents() {
assertTrue(false);
}
@Test
public void shouldntFindStudents() {
assertTrue(false);
}
}

View File

@ -6,5 +6,6 @@ spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.open-in-view=true
spring.jpa.hibernate.ddl-auto=create-drop
spring.jackson.serialization.fail-on-empty-beans=false
spring.main.allow-bean-definition-overriding=true
server.port=1285