Skip to content
Snippets Groups Projects
Commit 2de49790 authored by Benedikt Elser's avatar Benedikt Elser
Browse files

Upgrade spring boot

parent 2ea7d076
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.12.RELEASE</version>
<version>2.6.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
......
......@@ -2,14 +2,14 @@ package de.thd.pms.dao;
import java.util.List;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import de.thd.pms.model.Boot;
import de.thd.pms.service.BootService;
import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
@ContextConfiguration("/test-application-context.xml")
public class BootServiceTest extends AbstractDataAccessTest {
......@@ -52,7 +52,7 @@ public class BootServiceTest extends AbstractDataAccessTest {
deleteFromTables(tables);
bootService.create("Deggendorf", 4, "Vierer");
int rows = countRowsInTable(tabellennameBoot);
assertEquals("Die DB muss eine Zeile enthalten", 1, rows);
assertEquals(1, rows, "Die DB muss eine Zeile enthalten");
// delete all rows from db table
deleteFromTables(tables);
}
......
......@@ -4,9 +4,10 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.test.context.ContextConfiguration;
......@@ -21,7 +22,7 @@ import de.thd.pms.service.DaoException;
import de.thd.pms.service.FahrtService;
import de.thd.pms.service.PersonService;
import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.*;
@ContextConfiguration("/test-application-context.xml")
public class FahrtServiceTest extends AbstractDataAccessTest {
......@@ -45,7 +46,7 @@ public class FahrtServiceTest extends AbstractDataAccessTest {
this.bootService = bootService;
}
@Before
@BeforeEach
public void before() {
try {
// create two persons
......@@ -68,7 +69,7 @@ public class FahrtServiceTest extends AbstractDataAccessTest {
}
}
@After
@AfterEach
public void after() {
try {
deleteFromTables(tables);
......
package de.thd.pms.dao;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import de.thd.pms.model.Person;
import de.thd.pms.service.PersonService;
import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
@ContextConfiguration("/test-application-context.xml")
public class PersonServiceTest extends AbstractDataAccessTest {
......
package de.thd.pms.fahrtenbuch;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@RunWith(SpringRunner.class)
@ExtendWith(SpringExtension.class)
@SpringBootTest
public class FahrtenbuchApplicationTests {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment