public ComputeTestDataManager(ComputeService compute) { _compute = compute; _testData = new HashSet <object>(); var identityProvider = TestIdentityProvider.GetIdentityProvider(); var blockStorage = new CloudBlockStorageProvider(null, "RegionOne", identityProvider, null); BlockStorage = new BlockStorageTestDataManager(blockStorage); }
public ComputeServiceTests(ITestOutputHelper testLog) { var testOutput = new XunitTraceListener(testLog); Trace.Listeners.Add(testOutput); OpenStackNet.Tracing.Http.Listeners.Add(testOutput); var authenticationProvider = TestIdentityProvider.GetIdentityProvider(); _compute = new ComputeService(authenticationProvider, "RegionOne"); }
public ImageTests() { _compute = new ComputeService(Stubs.AuthenticationProvider, "region"); }
public SecurityGroupTests() { _compute = new ComputeService(Stubs.AuthenticationProvider, "region"); }
public KeyPairTests() { _computeService = new ComputeService(Stubs.AuthenticationProvider, "region"); }
public ServerAddressTests() { _compute = new ComputeService(Stubs.AuthenticationProvider, "region"); }