Skip to content

Commit

Permalink
Merge pull request #23 from AsrOneSdk/sanjkuma-dev
Browse files Browse the repository at this point in the history
New tests.
  • Loading branch information
sriramvu committed Jan 29, 2015
2 parents 586626d + 7384ec7 commit 9bb8821
Show file tree
Hide file tree
Showing 4 changed files with 485 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ public void RecoveryServicesFailbackTest()
this.RunPowerShellTest("Test-Failback -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesRRAfterFailoverTest()
{
this.RunPowerShellTest("Test-RRAfterFailover -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesRRAfterFailbackTest()
Expand All @@ -96,6 +103,13 @@ public void RecoveryServicesCommitPFOTest()
this.RunPowerShellTest("Test-CommitPFO -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesCommitAfterFailbackTest()
{
this.RunPowerShellTest("Test-CommitAfterFailback -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesPFOTest()
Expand Down Expand Up @@ -130,5 +144,61 @@ public void RecoveryServicesDisableProtectionTest()
{
this.RunPowerShellTest("Test-DisableProtection -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesE2E_DeleteAndDissociateTest()
{
this.RunPowerShellTest("Test-E2E_DeleteAndDissociate -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesE2E_CreateAndAssociateTest()
{
this.RunPowerShellTest("Test-E2E_CreateAndAssociate -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesPFORPTest()
{
this.RunPowerShellTest("Test-PFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesTFORPTest()
{
this.RunPowerShellTest("Test-TFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesUFORPTest()
{
this.RunPowerShellTest("Test-UFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesFailbackRPTest()
{
this.RunPowerShellTest("Test-FailbackRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesRRRPTest()
{
this.RunPowerShellTest("Test-RRRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void RecoveryServicesCommitRPTest()
{
this.RunPowerShellTest("Test-CommitRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
}
}
}
Loading

0 comments on commit 9bb8821

Please sign in to comment.