use of com.vmware.vim25.VmwareDistributedVirtualSwitchVlanSpec in project cloudstack by apache.
the class HypervisorHostHelperTest method testCreateDVPortVlanSpecValidVlanId.
@Test
public void testCreateDVPortVlanSpecValidVlanId() {
VmwareDistributedVirtualSwitchVlanSpec spec = HypervisorHostHelper.createDVPortVlanSpec(100, "400");
assertTrue(spec instanceof VmwareDistributedVirtualSwitchVlanIdSpec);
assertTrue(((VmwareDistributedVirtualSwitchVlanIdSpec) spec).getVlanId() == 100);
}
Aggregations