use of com.opensimulationplatform.core.model.modeldescription.variablegroup.generic.Generic in project osp-validator by open-simulation-platform.
the class NamesValidatorTest method validModelDescription.
@Test
public void validModelDescription() {
ModelDescription modelDescription = new ModelDescription();
Variable v1 = new Variable();
v1.setName("v1");
Variable v2 = new Variable();
v2.setName("v2");
modelDescription.getVariables().add(v1);
modelDescription.getVariables().add(v2);
Generic vg1 = new Generic();
vg1.setName("v3");
Generic vg2 = new Generic();
vg2.setName("v4");
modelDescription.getGenerics().add(vg1);
modelDescription.getGenerics().add(vg2);
NamesValidator namesValidator = new NamesValidator();
List<ValidationDiagnostic<Name>> diagnostics = namesValidator.validate(modelDescription);
assertEquals(0, diagnostics.size());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.generic.Generic in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_1_Test method valid.
@Test
public void valid() {
Variable v1 = new Variable();
v1.setName("v1");
v1.setCausality(Variable.Causality.INPUT);
v1.setType(Variable.Type.REAL);
Variable v2 = new Variable();
v2.setName("v2");
v2.setCausality(Variable.Causality.INPUT);
v2.setType(Variable.Type.REAL);
Generic variableGroup = new Generic();
variableGroup.setVariables(Arrays.asList(v1, v2));
builder.build(variableGroup);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.generic.Generic in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_2_Test method valid.
@Test
public void valid() {
Generic vg1 = new Generic();
vg1.setName("vg1");
Generic vg2 = new Generic();
vg2.setName("vg2");
builder.build(vg1);
builder.build(vg2);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertTrue(diagnostics.isEmpty());
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.generic.Generic in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_3_Test method invalid.
@Test
public void invalid() {
Generic vg1 = new Generic();
vg1.setName("vg1");
Generic vg2 = new Generic();
vg2.setName("vg2");
Variable v1 = new Variable();
v1.setName("not-unique");
v1.setCausality(Variable.Causality.INPUT);
v1.setType(Variable.Type.REAL);
Variable v2 = new Variable();
v2.setName("not-unique");
v2.setCausality(Variable.Causality.INPUT);
v2.setType(Variable.Type.REAL);
vg2.setVariables(Arrays.asList(v1, v2));
vg1.getGenerics().add(vg2);
builder.build(vg1);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertEquals(1, diagnostics.size());
List<VariableGroup> invalidVariableGroups = diagnostics.stream().map(ValidationDiagnostic::getValidatedObject).collect(Collectors.toList());
assertTrue(invalidVariableGroups.contains(vg1));
}
use of com.opensimulationplatform.core.model.modeldescription.variablegroup.generic.Generic in project osp-validator by open-simulation-platform.
the class VE_VariableGroup_3_Test method valid.
@Test
public void valid() {
Generic vg1 = new Generic();
vg1.setName("vg1");
Generic vg2 = new Generic();
vg2.setName("vg2");
Variable v1 = new Variable();
v1.setName("v1");
v1.setCausality(Variable.Causality.INPUT);
v1.setType(Variable.Type.REAL);
Variable v2 = new Variable();
v2.setName("v2");
v2.setCausality(Variable.Causality.INPUT);
v2.setType(Variable.Type.REAL);
vg2.setVariables(Arrays.asList(v1, v2));
vg1.getGenerics().add(vg2);
builder.build(vg1);
builder.complete();
List<ValidationDiagnostic<VariableGroup>> diagnostics = validationError.validate();
assertTrue(diagnostics.isEmpty());
}
Aggregations