test-support and temperature #2

Merged
adsu7578 merged 3 commits from test into develop 2022-05-13 13:43:41 +02:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit 1251db1c5a - Show all commits

View File

@ -33,6 +33,11 @@
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
<dependency> <dependency>

View File

@ -1,8 +1,8 @@
package com.smhi.weather; package com.smhi.weather;
import org.junit.jupiter.api.Test; import org.junit.Test;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.Assert.*;
class OpenWeatherServiceTest { class OpenWeatherServiceTest {