Package com.netflix.genie.common.model

Examples of com.netflix.genie.common.model.Command


     *
     * @throws GenieException
     */
    @Test
    public void testSetApplicationForCommand() throws GenieException {
        final Command command2 = this.service.getCommand(COMMAND_2_ID);
        Assert.assertNull(command2.getApplication());

        final Application app = this.appService.getApplication(APP_1_ID);
        final Set<Command> preCommands
                = this.appService.getCommandsForApplication(APP_1_ID);
        Assert.assertEquals(1, preCommands.size());
View Full Code Here

TOP

Related Classes of com.netflix.genie.common.model.Command

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.