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

Add IHC report and Therapies

This commit is contained in:
2024-12-24 13:28:56 +01:00
parent 363b566ffb
commit 263715c24d
17 changed files with 405 additions and 18 deletions

View File

@ -4,13 +4,14 @@ import org.junit.jupiter.api.Test;
import java.io.IOException;
public class ConverterTest {
import static org.junit.jupiter.api.Assertions.assertNotNull;
class ConverterTest {
@Test
void shouldDeserializeJsonString() throws IOException {
var ressource = getClass().getClassLoader().getResource("mv64e-mtb-fake-patient.json");
Converter.fromJsonString(new String(ressource.openStream().readAllBytes()));
assertNotNull(Converter.fromJsonString(new String(ressource.openStream().readAllBytes())));
}
}