use of org.karnak.backend.model.expression.ExprCondition in project karnak by OsiriX-Foundation.
the class ExprConditionTest method setUpBeforeClass.
@BeforeAll
protected static void setUpBeforeClass() throws Exception {
final Attributes dataset = new Attributes();
dataset.setString(Tag.StudyDate, VR.DA, "20180209");
dataset.setString(Tag.PatientAge, VR.AS, "043Y");
dataset.setString(Tag.SeriesInstanceUID, VR.UI, "2.25.1234567890123456");
dataset.setString(Tag.ClinicalTrialSiteName, VR.LO, "Unicorn Land");
dataset.setString(Tag.SmokingStatus, VR.CS, "YES");
dataset.setString(Tag.Modality, VR.CS, "CT");
exprCondition = new ExprCondition(dataset);
}
Aggregations