/**
* 同名のプロパティを同一視する結合のテスト。
*/
@Test
public void fill() {
TableModelDescription a = new TableModelBuilder("A")
.add(null, "id", PropertyTypeKind.LONG)
.add(null, "hoge", new StringType(255))
.toDescription();
TableModelDescription b = new TableModelBuilder("B")
.add(null, "id", PropertyTypeKind.LONG)
.add(null, "hoge", new StringType(255))
.toDescription();
JoinedModelBuilder target = new JoinedModelBuilder(