}
/** Tests layout IDs. */
@Test
public void testLayoutIDs() throws Exception {
final TableLayoutDesc desc = TableLayoutDesc.newBuilder()
.setName("table_name")
.setKeysFormat(makeRawRKF1())
.setVersion("layout-1.0")
.build();
final KijiTableLayout layout = KijiTableLayout.newLayout(desc);
assertEquals("1", layout.getDesc().getLayoutId());
final TableLayoutDesc descV2 = TableLayoutDesc.newBuilder(desc)
.setReferenceLayout("1")
.build();
final KijiTableLayout layoutV2 = KijiTableLayout.createUpdatedLayout(descV2, layout);
assertEquals("2", layoutV2.getDesc().getLayoutId());
}