* The default Kiji instance URI is environment specific. Hence, this cannot test for explicit
* values of the ZooKeeper quorum of of the ZooKeeper client port.
*/
@Test
public void testKijiURIBuilderDefault() {
KijiURI uri = KijiURI.newBuilder().build();
assertTrue(!uri.getZookeeperQuorum().isEmpty()); // Test cannot be more specific.
// Test cannot validate the value of uri.getZookeeperClientPort().
assertEquals(KConstants.DEFAULT_INSTANCE_NAME, uri.getInstance());
assertEquals(null, uri.getTable());
assertTrue(uri.getColumns().isEmpty());
}