Examples of AWSResource


Examples of com.netflix.simianarmy.aws.AWSResource

        Assert.assertNull(resource.getExpectedTerminationTime());
    }

    @Test
    public void testUnavailableVolume() {
        Resource resource = new AWSResource().withId("vol-123").withResourceType(AWSResourceType.EBS_VOLUME);
        ((AWSResource) resource).setAWSResourceState("stopped");
        OldDetachedVolumeRule rule = new OldDetachedVolumeRule(new TestMonkeyCalendar(), 0, 0);
        Assert.assertTrue(rule.isValid(resource));
        Assert.assertNull(resource.getExpectedTerminationTime());
    }
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.