Examples of categoryIndex()


Examples of gov.nasa.arc.mct.components.Bootstrap.categoryIndex()

       
        // Is globally accessible (for all users)
        Assert.assertTrue(capability.isGlobal());
       
        // Appears near the bottom, but not at the bottom
        Assert.assertEquals(capability.categoryIndex(), Integer.MAX_VALUE);
        Assert.assertTrue(capability.componentIndex() < Integer.MAX_VALUE);       
    }
   
}
View Full Code Here

Examples of gov.nasa.arc.mct.components.Bootstrap.categoryIndex()

       
        // Is not globally accessible (one per user)
        Assert.assertFalse(capability.isGlobal());
       
        // Appears at the end of sorted list of bootstraps
        Assert.assertEquals(capability.categoryIndex(), Integer.MAX_VALUE);
        Assert.assertEquals(capability.componentIndex(), Integer.MAX_VALUE);       
    }
   
}
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.