Package org.apache.marmotta.client.clients

Examples of org.apache.marmotta.client.clients.ConfigurationClient.listConfigurationKeys()


    @Test
    public void testListConfigurationKeys() throws MarmottaClientException, IOException {
        ConfigurationClient client = new ConfigurationClient(config);
       
        Set<String> keys = client.listConfigurationKeys();
        Assert.assertNotNull(keys);
        Assert.assertThat(keys, Matchers.hasItem("kiwi.host"));
    }

    @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.