Skip to content

Commit a561d3f

Browse files
committed
Included the new test scripts into test runner
1 parent 1c84b1e commit a561d3f

File tree

1 file changed

+62
-6
lines changed

1 file changed

+62
-6
lines changed

src/Resources/Resources.Test/ScenarioTests/DeploymentStackTests.cs

Lines changed: 62 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,79 @@ public void TestResourceGroupDeploymentStackGet()
3333

3434
[Fact()]
3535
[Trait(Category.AcceptanceType, Category.CheckIn)]
36-
public void TestResourceGroupDeploymentStackGetWithResourceId()
36+
public void TestResourceGroupDeploymentStackSnapshotGet()
3737
{
38-
TestRunner.RunTestScript("");
38+
TestRunner.RunTestScript("Test-GetResourceGroupDeploymentStackSnapshot");
3939
}
4040

4141
[Fact()]
4242
[Trait(Category.AcceptanceType, Category.CheckIn)]
43-
public void TestSubscriptionDeploymentStackGetWithResourceName()
43+
public void TestSubscriptionDeploymentStackGet()
4444
{
45-
TestRunner.RunTestScript("");
45+
TestRunner.RunTestScript("Test-GetSubscriptionDeploymentStack");
4646
}
4747

4848
[Fact()]
4949
[Trait(Category.AcceptanceType, Category.CheckIn)]
50-
public void TestSubscriptionDeploymentStackGetWithResourceId()
50+
public void TestSubscriptionDeploymentStackSnapshotGet()
5151
{
52-
TestRunner.RunTestScript("");
52+
TestRunner.RunTestScript("Test-GetSubscriptionDeploymentStackSnapshot");
53+
}
54+
55+
[Fact()]
56+
[Trait(Category.AcceptanceType, Category.CheckIn)]
57+
public void TestNewResourceGroupDeploymentStack()
58+
{
59+
TestRunner.RunTestScript("Test-NewResourceGroupDeploymentStack");
60+
}
61+
62+
[Fact()]
63+
[Trait(Category.AcceptanceType, Category.CheckIn)]
64+
public void TestNewSubscriptionDeploymentStack()
65+
{
66+
TestRunner.RunTestScript("Test-NewSubscriptionDeploymentStack");
67+
}
68+
69+
[Fact()]
70+
[Trait(Category.AcceptanceType, Category.CheckIn)]
71+
public void TestResourceGroupDeploymentStackDelete()
72+
{
73+
TestRunner.RunTestScript("Test-RemoveResourceGroupDeploymentStack");
74+
}
75+
76+
[Fact()]
77+
[Trait(Category.AcceptanceType, Category.CheckIn)]
78+
public void TestResourceGroupDeploymentStackSnapshotDelete()
79+
{
80+
TestRunner.RunTestScript("Test-RemoveResourceGroupDeploymentStackSnapshot");
81+
}
82+
83+
[Fact()]
84+
[Trait(Category.AcceptanceType, Category.CheckIn)]
85+
public void TestSubscriptionDeploymentStackDelete()
86+
{
87+
TestRunner.RunTestScript("Test-RemoveSubscriptionDeploymentStack");
88+
}
89+
90+
[Fact()]
91+
[Trait(Category.AcceptanceType, Category.CheckIn)]
92+
public void TestSubscriptionDeploymentStackSnapshotDelete()
93+
{
94+
TestRunner.RunTestScript("Test-RemoveSubscriptionDeploymentStackSnapshot");
95+
}
96+
97+
[Fact()]
98+
[Trait(Category.AcceptanceType, Category.CheckIn)]
99+
public void TestSetResourceGroupDeploymentStack()
100+
{
101+
TestRunner.RunTestScript("Test-SetResourceGroupDeploymentStack");
102+
}
103+
104+
[Fact()]
105+
[Trait(Category.AcceptanceType, Category.CheckIn)]
106+
public void TestSetSubscriptionDeploymentStack()
107+
{
108+
TestRunner.RunTestScript("Test-SetSubscriptionDeploymentStack");
53109
}
54110

55111
}

0 commit comments

Comments
 (0)