Package org.apache.ace.client.workspace.impl

Examples of org.apache.ace.client.workspace.impl.WorkspaceManagerImpl


public class WorkspaceManagerImplTest {
    @SuppressWarnings("serial")
  @Test(groups = { UNIT })
    public void testPropertyGetter() {
        WorkspaceManagerImpl s = new WorkspaceManagerImpl();
        Assert.assertEquals(s.getProperty(new Properties() {{ put("key", "value"); }}"key", "notused"), "value");
        Assert.assertEquals(s.getProperty(new Properties() {{ put("unusedkey", "value"); }}"key", "default"), "default");
        Assert.assertEquals(s.getProperty(null,  "key", "default"), "default");
    }
View Full Code Here

TOP

Related Classes of org.apache.ace.client.workspace.impl.WorkspaceManagerImpl

Copyright © 2018 www.massapicom. 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.