@@ -71,23 +71,23 @@ public DscExtensionConfigurationParsingHelperTests()
71
71
}
72
72
73
73
[ Fact ]
74
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
74
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
75
75
public void TestGetModuleNameForDscResourceXComputer ( )
76
76
{
77
77
string moduleName = ConfigurationParsingHelper . GetModuleNameForDscResource ( "MSFT_xComputer" ) ;
78
78
Assert . Equal ( "xComputerManagement" , moduleName ) ;
79
79
}
80
80
81
81
[ Fact ]
82
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
82
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
83
83
public void TestGetModuleNameForDscResourceXadDomain ( )
84
84
{
85
85
string moduleName = ConfigurationParsingHelper . GetModuleNameForDscResource ( "MSFT_xADDomain" ) ;
86
86
Assert . Equal ( "xActiveDirectory" , moduleName ) ;
87
87
}
88
88
89
89
[ Fact ]
90
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
90
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
91
91
public void TestExtractConfigurationNames1 ( )
92
92
{
93
93
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( CorporateClientConfigurationPath ) ;
@@ -97,7 +97,7 @@ public void TestExtractConfigurationNames1()
97
97
}
98
98
99
99
[ Fact ]
100
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
100
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
101
101
public void TestExtractConfigurationNames2 ( )
102
102
{
103
103
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( DomainControllerConfigurationPath ) ;
@@ -108,7 +108,7 @@ public void TestExtractConfigurationNames2()
108
108
}
109
109
110
110
[ Fact ]
111
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
111
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
112
112
public void TestExtractConfigurationNames3 ( )
113
113
{
114
114
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( VisualStudioPath ) ;
@@ -118,7 +118,7 @@ public void TestExtractConfigurationNames3()
118
118
}
119
119
120
120
[ Fact ]
121
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
121
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
122
122
public void TestExtractConfigurationNamesMulti ( )
123
123
{
124
124
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( ShMulptiConfigurationsPath ) ;
@@ -130,7 +130,7 @@ public void TestExtractConfigurationNamesMulti()
130
130
}
131
131
132
132
[ Fact ]
133
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
133
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
134
134
public void TestNameImportListInsideNode ( )
135
135
{
136
136
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( NameImportListInsideNodeConfigurationPath ) ;
@@ -141,7 +141,7 @@ public void TestNameImportListInsideNode()
141
141
}
142
142
143
143
[ Fact ]
144
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
144
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
145
145
public void TestNameImportListOutsideNode ( )
146
146
{
147
147
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( NameImportListOutsideNodeConfigurationPath ) ;
@@ -152,7 +152,7 @@ public void TestNameImportListOutsideNode()
152
152
}
153
153
154
154
[ Fact ]
155
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
155
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
156
156
public void TestNameImportSingleInsideNode ( )
157
157
{
158
158
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( NameImportSingleInsideNodeConfigurationPath ) ;
@@ -162,7 +162,7 @@ public void TestNameImportSingleInsideNode()
162
162
}
163
163
164
164
[ Fact ]
165
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
165
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
166
166
public void TestNameImportSingleOutsideNode ( )
167
167
{
168
168
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( NameImportSingleOutsideNodeConfigurationPath ) ;
@@ -172,7 +172,7 @@ public void TestNameImportSingleOutsideNode()
172
172
}
173
173
174
174
[ Fact ]
175
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
175
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
176
176
public void TestNameModuleImportSingleInsideNode ( )
177
177
{
178
178
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( NameModuleImportSingleInsideNodeConfigurationPath ) ;
@@ -182,7 +182,7 @@ public void TestNameModuleImportSingleInsideNode()
182
182
}
183
183
184
184
[ Fact ]
185
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
185
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
186
186
public void TestModuleImportListInsideNode ( )
187
187
{
188
188
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( ModuleImportListInsideNodeConfigurationPath ) ;
@@ -193,7 +193,7 @@ public void TestModuleImportListInsideNode()
193
193
}
194
194
195
195
[ Fact ]
196
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
196
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
197
197
public void TestModuleImportListOutsideNode ( )
198
198
{
199
199
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( ModuleImportListOutsideNodeConfigurationPath ) ;
@@ -204,7 +204,7 @@ public void TestModuleImportListOutsideNode()
204
204
}
205
205
206
206
[ Fact ]
207
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
207
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
208
208
public void TestModuleImportSingleInsideNode ( )
209
209
{
210
210
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( ModuleImportSingleInsideNodeConfigurationPath ) ;
@@ -214,7 +214,7 @@ public void TestModuleImportSingleInsideNode()
214
214
}
215
215
216
216
[ Fact ]
217
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
217
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
218
218
public void TestModuleImportSingleOutsideNode ( )
219
219
{
220
220
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( ModuleImportSingleOutsideNodeConfigurationPath ) ;
@@ -224,7 +224,7 @@ public void TestModuleImportSingleOutsideNode()
224
224
}
225
225
226
226
[ Fact ]
227
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
227
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
228
228
public void TestIeeScGood ( )
229
229
{
230
230
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( IeeScGoodConfigurationPath ) ;
@@ -234,7 +234,7 @@ public void TestIeeScGood()
234
234
}
235
235
236
236
[ Fact ]
237
- [ Trait ( Category . AcceptanceType , Category . CheckIn ) ]
237
+ [ Trait ( Category . AcceptanceType , Category . BVT ) ]
238
238
public void TestIeeScBad ( )
239
239
{
240
240
ConfigurationParseResult results = ConfigurationParsingHelper . ParseConfiguration ( IeeScBadConfigurationPath ) ;
0 commit comments