use of org.eclipse.xtext.parsetree.impl.bug305397.Model in project xtext-core by eclipse.
the class Bug299395Test method testSerialization_03.
@Test
public void testSerialization_03() {
Model model = Bug299395Factory.eINSTANCE.createModel();
model.getStrings().add("Foo");
model.getStrings().add("Bar");
model.getStrings().add("Zonk");
String serialized = getSerializer().serialize(model);
assertEquals("{ \"Foo\" } { \"Bar\" } { \"Zonk\" }", serialized);
}
use of org.eclipse.xtext.parsetree.impl.bug305397.Model in project xtext-core by eclipse.
the class Bug299395Test method testSerialization_05.
@Test
public void testSerialization_05() {
Model model = Bug299395Factory.eINSTANCE.createModel();
model.getStrings().add("Unused");
model.getKeys().add("Key1");
model.getValues().add("Value1");
model.getKeys().add("Key2");
model.getValues().add("Value2");
String serialized = getSerializer().serialize(model);
assertEquals("{ \"Unused\" } [ \"Key1\" \"Value1\" \"Key2\" \"Value2\" ]", serialized);
}
use of org.eclipse.xtext.parsetree.impl.bug305397.Model in project xtext-core by eclipse.
the class Bug299395Test method testSerialization_06.
@Test
public void testSerialization_06() {
Model model = Bug299395Factory.eINSTANCE.createModel();
SubModel subModel = Bug299395Factory.eINSTANCE.createSubModel();
model.setSubModel(subModel);
String serialized = getSerializer().serialize(model);
assertEquals("subModel", serialized);
}
use of org.eclipse.xtext.parsetree.impl.bug305397.Model in project xtext-core by eclipse.
the class Bug299395Test method testSerialization_02.
@Test
public void testSerialization_02() {
Model model = Bug299395Factory.eINSTANCE.createModel();
model.getStrings().add("Foo");
String serialized = getSerializer().serialize(model);
assertEquals("{ \"Foo\" }", serialized);
}
use of org.eclipse.xtext.parsetree.impl.bug305397.Model in project xtext-core by eclipse.
the class Bug302128Test method testTheBug2.
@Test
public void testTheBug2() throws Exception {
with(new Bug302128TestLanguageStandaloneSetup());
String text = "VARIABLE += value.val value2.val\n" + "VARIABLE2 += value3.val value4.val\n\n" + "#Comment comment comment\n\n" + "VARIABLE3 += value5.val value6.val\n" + "VARIABLE4 += value.val value2.val\n" + "VARIABLE5 += value3.val value4.val\n\n" + "#Comment comment comment\n\n" + "VARIABLE.varible += value5.val value6.val\n";
XtextResource resource = getResource(new StringInputStream(text));
Model model = (Model) resource.getContents().get(0);
model.getElements().get(2).setValue("+= value5.val value6.val\n");
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
resource.save(outputStream, null);
assertEquals(text, new String(outputStream.toByteArray()));
}
Aggregations