assertThat(selectElement.attr("id"), equalTo(oneToManyProperty));
assertThat(selectElement.attr("multiple"), notNullValue());
assertThat(selectElement.attr("ng-model"), equalTo(oneToManyProperty+"Selection"));
String collectionElement = oneToManyProperty.substring(0, 1);
String optionsExpression = collectionElement +".text for "+ collectionElement +" in " + oneToManyProperty + "SelectionList";
assertThat(selectElement.attr("ng-options"), equalTo(optionsExpression));
}
@Test
public void testGenerateManyToManyProperty() throws Exception {
String manyToManyProperty = "users";