blob: ee9140ffc01c185c15328a761f2eb540260986b4 [file] [log] [blame]
@model
operation prepareModels() {
var bA = new A!Book;
bA.title = 'Hello World';
// Try changing this to a different string and watch EUnit fail the test.
var bB := new B!Book;
bB.title = 'Hello World';
}
@test
operation shouldBeEqual() {
assertEqualModels("A", "B");
}