@@ -18,39 +18,39 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests
18
18
using Microsoft . Azure . Test ;
19
19
using Xunit ;
20
20
21
- public class DataLakeAnalyticsTests : DataLakeAnalyticsTestsBase
21
+ public class AdlaTests : AdlaTestsBase
22
22
{
23
23
[ Fact ]
24
24
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
25
- public void TestDataLakeAnalyticsAccount ( )
25
+ public void TestAdlaAccount ( )
26
26
{
27
27
RunPowerShellTest (
28
28
string . Format (
29
29
"Test-DataLakeAnalyticsAccount -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -secondDataLakeAccountName {3} -blobAccountName {4} -blobAccountKey {5} -location '{6}'" ,
30
30
this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName ,
31
31
this . secondDataLakeStoreAccountName , this . azureBlobStoreName , this . azureBlobStoreAccessKey ,
32
- DataLakeAnalyticsTestsBase . resourceGroupLocation ) ) ;
32
+ AdlaTestsBase . resourceGroupLocation ) ) ;
33
33
}
34
34
35
35
[ Fact ]
36
36
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
37
- public void TestDataLakeAnalyticsJob ( )
37
+ public void TestAdlaJob ( )
38
38
{
39
- RunPowerShellTest ( string . Format ( "Test-DataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , DataLakeAnalyticsTestsBase . resourceGroupLocation ) ) ;
39
+ RunPowerShellTest ( string . Format ( "Test-DataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , AdlaTestsBase . resourceGroupLocation ) ) ;
40
40
}
41
41
42
42
[ Fact ]
43
43
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
44
- public void TestNegativeDataLakeAnalyticsAccount ( )
44
+ public void TestNegativeAdlaAccount ( )
45
45
{
46
- RunPowerShellTest ( string . Format ( "Test-NegativeDataLakeAnalyticsAccount -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , DataLakeAnalyticsTestsBase . resourceGroupLocation ) ) ;
46
+ RunPowerShellTest ( string . Format ( "Test-NegativeDataLakeAnalyticsAccount -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , AdlaTestsBase . resourceGroupLocation ) ) ;
47
47
}
48
48
49
49
[ Fact ]
50
50
[ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
51
- public void TestNegativeDataLakeAnalyticsJob ( )
51
+ public void TestNegativeAdlaJob ( )
52
52
{
53
- RunPowerShellTest ( string . Format ( "Test-NegativeDataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , DataLakeAnalyticsTestsBase . resourceGroupLocation ) ) ;
53
+ RunPowerShellTest ( string . Format ( "Test-NegativeDataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'" , this . resourceGroupName , this . dataLakeAnalyticsAccountName , this . dataLakeStoreAccountName , AdlaTestsBase . resourceGroupLocation ) ) ;
54
54
}
55
55
}
56
56
}
0 commit comments