--
You received this message because you are subscribed to the Google Groups "osmo" group.
To unsubscribe from this group and stop receiving emails from it, send an email to osmo-mbt+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
package osmo.tester.examples.calendar.testmodel.CalendarMeetingModel;
which is used by:
package osmo.tester.examples.calendar.CalendarTests;
CalendarTests has test such as:
@Test
public void baseModelOnline() {
ModelState state = new ModelState();
CalendarScripter scripter = new OnlineScripter();
SingleInstanceModelFactory factory = new SingleInstanceModelFactory();
osmo.setModelFactory(factory);
factory.add(new CalendarMeetingModel(state, scripter, out));
generateAndAssertOutput("expected-base-online.txt");
scripter.write();
}
The referenced "expected-base-online.txt" file does not contain the strings output by the CalendarMeetingModel. Just wanted to find out if the expected
test files were in sync with the test models. Thought I might be missing something here, since I do not see any ADDMEETINGS in the txt file.
Thanks in advance.
Regards,
Bruce
--