mirror of
https://github.com/dnpm-dip/mv64e-mtb-dto-java.git
synced 2025-07-02 18:52:53 +00:00
17 lines
390 B
Java
17 lines
390 B
Java
package dev.pcvolkmer.mv64e.mtb;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class ConverterTest {
|
|
|
|
@Test
|
|
void shouldDeserializeJsonString() throws IOException {
|
|
var ressource = getClass().getClassLoader().getResource("mv64e-mtb-fake-patient.json");
|
|
|
|
Converter.fromJsonString(new String(ressource.openStream().readAllBytes()));
|
|
}
|
|
|
|
}
|