1
+ // ----------------------------------------------------------------------------------
2
+ //
3
+ // Copyright Microsoft Corporation
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ // ----------------------------------------------------------------------------------
14
+
15
+ using Microsoft . Azure . Commands . ResourceManager . Common ;
16
+ using Microsoft . Azure . Commands . Resources . Test . ScenarioTests ;
17
+ using Microsoft . Azure . Commands . ScenarioTest ;
18
+ using Microsoft . Azure . ServiceManagemenet . Common . Models ;
19
+ using Microsoft . WindowsAzure . Commands . ScenarioTest ;
20
+ using Microsoft . WindowsAzure . Commands . Test . Utilities . Common ;
21
+ using Xunit ;
22
+ using Xunit . Abstractions ;
23
+
24
+ namespace Microsoft . Azure . Commands . Profile . Test
25
+ {
26
+ public class ArgumentCompleterTests : RMTestBase
27
+ {
28
+ private XunitTracingInterceptor xunitLogger ;
29
+
30
+ public ArgumentCompleterTests ( ITestOutputHelper output )
31
+ {
32
+ TestExecutionHelpers . SetUpSessionAndProfile ( ) ;
33
+ ResourceManagerProfileProvider . InitializeResourceManagerProfile ( true ) ;
34
+
35
+ xunitLogger = new XunitTracingInterceptor ( output ) ;
36
+ }
37
+
38
+ [ Fact ]
39
+ [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
40
+ public void DefaultResourceGroup ( )
41
+ {
42
+ ProfileController . NewInstance . RunPsTest ( xunitLogger , "72f988bf-86f1-41af-91ab-2d7cd011db47" , "Test-LocationCompleter" ) ;
43
+ }
44
+ }
45
+ }
0 commit comments