1
0
mirror of https://github.com/dnpm-dip/mv64e-mtb-dto-java.git synced 2025-07-03 19:12:55 +00:00

Initial commit

This commit is contained in:
2024-07-09 16:36:24 +02:00
commit c7386f1dc2
104 changed files with 3676 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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()));
}
}