-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFunctions.cs
495 lines (480 loc) · 24.9 KB
/
Functions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Text;
using Microsoft.Data.Tools.Schema.Sql.UnitTesting;
using Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace OnTopic.Data.Sql.Database.Tests {
[TestClass()]
public class Functions: SqlDatabaseTestClass {
public Functions() {
InitializeComponent();
}
[TestInitialize()]
public void TestInitialize() {
base.InitializeTest();
}
[TestCleanup()]
public void TestCleanup() {
base.CleanupTest();
}
#region Designer support code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent() {
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetExtendedAttributeTest_TestAction;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Functions));
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition getExtendedAttributeValue;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetParentIDTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition getParentIDValue;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetTopicIDTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition getIDTopicValue;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetUniqueKeyTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition getUniqueKeyValue;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_FindTopicIDsTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition findTopicCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetAttributesTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition getAttributeCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition getAttributeValue;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetChildTopicIDsTest_TestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition getChildTopicCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetAttributesTest_PretestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition preGetAttributeCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetAttributesTest_PosttestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition postGetAttributeCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction testInitializeAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition preFunctionTopicCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction testCleanupAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition postFunctionTopicCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_FindTopicIDsTest_PretestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition preFindAttributeCount;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction dbo_GetExtendedAttributeTest_PretestAction;
Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition preGetExtendedAttributeCount;
this.dbo_GetExtendedAttributeTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_GetParentIDTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_GetTopicIDTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_GetUniqueKeyTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_FindTopicIDsTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_GetAttributesTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
this.dbo_GetChildTopicIDsTestData = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestActions();
dbo_GetExtendedAttributeTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getExtendedAttributeValue = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition();
dbo_GetParentIDTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getParentIDValue = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition();
dbo_GetTopicIDTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getIDTopicValue = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition();
dbo_GetUniqueKeyTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getUniqueKeyValue = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition();
dbo_FindTopicIDsTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
findTopicCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
dbo_GetAttributesTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getAttributeCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
getAttributeValue = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.ScalarValueCondition();
dbo_GetChildTopicIDsTest_TestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
getChildTopicCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
dbo_GetAttributesTest_PretestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
preGetAttributeCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
dbo_GetAttributesTest_PosttestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
postGetAttributeCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
testInitializeAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
preFunctionTopicCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
testCleanupAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
postFunctionTopicCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
dbo_FindTopicIDsTest_PretestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
preFindAttributeCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
dbo_GetExtendedAttributeTest_PretestAction = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.SqlDatabaseTestAction();
preGetExtendedAttributeCount = new Microsoft.Data.Tools.Schema.Sql.UnitTesting.Conditions.RowCountCondition();
//
// dbo_GetExtendedAttributeTest_TestAction
//
dbo_GetExtendedAttributeTest_TestAction.Conditions.Add(getExtendedAttributeValue);
resources.ApplyResources(dbo_GetExtendedAttributeTest_TestAction, "dbo_GetExtendedAttributeTest_TestAction");
//
// getExtendedAttributeValue
//
getExtendedAttributeValue.ColumnNumber = 1;
getExtendedAttributeValue.Enabled = true;
getExtendedAttributeValue.ExpectedValue = "Value2";
getExtendedAttributeValue.Name = "getExtendedAttributeValue";
getExtendedAttributeValue.NullExpected = false;
getExtendedAttributeValue.ResultSet = 1;
getExtendedAttributeValue.RowNumber = 1;
//
// dbo_GetParentIDTest_TestAction
//
dbo_GetParentIDTest_TestAction.Conditions.Add(getParentIDValue);
resources.ApplyResources(dbo_GetParentIDTest_TestAction, "dbo_GetParentIDTest_TestAction");
//
// getParentIDValue
//
getParentIDValue.ColumnNumber = 1;
getParentIDValue.Enabled = true;
getParentIDValue.ExpectedValue = "0";
getParentIDValue.Name = "getParentIDValue";
getParentIDValue.NullExpected = false;
getParentIDValue.ResultSet = 1;
getParentIDValue.RowNumber = 1;
//
// dbo_GetTopicIDTest_TestAction
//
dbo_GetTopicIDTest_TestAction.Conditions.Add(getIDTopicValue);
resources.ApplyResources(dbo_GetTopicIDTest_TestAction, "dbo_GetTopicIDTest_TestAction");
//
// getIDTopicValue
//
getIDTopicValue.ColumnNumber = 1;
getIDTopicValue.Enabled = true;
getIDTopicValue.ExpectedValue = "0";
getIDTopicValue.Name = "getIDTopicValue";
getIDTopicValue.NullExpected = false;
getIDTopicValue.ResultSet = 1;
getIDTopicValue.RowNumber = 1;
//
// dbo_GetUniqueKeyTest_TestAction
//
dbo_GetUniqueKeyTest_TestAction.Conditions.Add(getUniqueKeyValue);
resources.ApplyResources(dbo_GetUniqueKeyTest_TestAction, "dbo_GetUniqueKeyTest_TestAction");
//
// getUniqueKeyValue
//
getUniqueKeyValue.ColumnNumber = 1;
getUniqueKeyValue.Enabled = true;
getUniqueKeyValue.ExpectedValue = "Root:FunctionTests:Topic_1:Topic_1_1:Topic_1_1_1:Topic_1_1_1_2";
getUniqueKeyValue.Name = "getUniqueKeyValue";
getUniqueKeyValue.NullExpected = false;
getUniqueKeyValue.ResultSet = 1;
getUniqueKeyValue.RowNumber = 1;
//
// dbo_FindTopicIDsTest_TestAction
//
dbo_FindTopicIDsTest_TestAction.Conditions.Add(findTopicCount);
resources.ApplyResources(dbo_FindTopicIDsTest_TestAction, "dbo_FindTopicIDsTest_TestAction");
//
// findTopicCount
//
findTopicCount.Enabled = true;
findTopicCount.Name = "findTopicCount";
findTopicCount.ResultSet = 1;
findTopicCount.RowCount = 2;
//
// dbo_GetAttributesTest_TestAction
//
dbo_GetAttributesTest_TestAction.Conditions.Add(getAttributeCount);
dbo_GetAttributesTest_TestAction.Conditions.Add(getAttributeValue);
resources.ApplyResources(dbo_GetAttributesTest_TestAction, "dbo_GetAttributesTest_TestAction");
//
// getAttributeCount
//
getAttributeCount.Enabled = true;
getAttributeCount.Name = "getAttributeCount";
getAttributeCount.ResultSet = 1;
getAttributeCount.RowCount = 4;
//
// getAttributeValue
//
getAttributeValue.ColumnNumber = 1;
getAttributeValue.Enabled = true;
getAttributeValue.ExpectedValue = "GetAttributesTest4";
getAttributeValue.Name = "getAttributeValue";
getAttributeValue.NullExpected = false;
getAttributeValue.ResultSet = 1;
getAttributeValue.RowNumber = 4;
//
// dbo_GetChildTopicIDsTest_TestAction
//
dbo_GetChildTopicIDsTest_TestAction.Conditions.Add(getChildTopicCount);
resources.ApplyResources(dbo_GetChildTopicIDsTest_TestAction, "dbo_GetChildTopicIDsTest_TestAction");
//
// getChildTopicCount
//
getChildTopicCount.Enabled = true;
getChildTopicCount.Name = "getChildTopicCount";
getChildTopicCount.ResultSet = 1;
getChildTopicCount.RowCount = 3;
//
// dbo_GetAttributesTest_PretestAction
//
dbo_GetAttributesTest_PretestAction.Conditions.Add(preGetAttributeCount);
resources.ApplyResources(dbo_GetAttributesTest_PretestAction, "dbo_GetAttributesTest_PretestAction");
//
// preGetAttributeCount
//
preGetAttributeCount.Enabled = true;
preGetAttributeCount.Name = "preGetAttributeCount";
preGetAttributeCount.ResultSet = 1;
preGetAttributeCount.RowCount = 3;
//
// dbo_GetAttributesTest_PosttestAction
//
dbo_GetAttributesTest_PosttestAction.Conditions.Add(postGetAttributeCount);
resources.ApplyResources(dbo_GetAttributesTest_PosttestAction, "dbo_GetAttributesTest_PosttestAction");
//
// postGetAttributeCount
//
postGetAttributeCount.Enabled = true;
postGetAttributeCount.Name = "postGetAttributeCount";
postGetAttributeCount.ResultSet = 1;
postGetAttributeCount.RowCount = 0;
//
// testInitializeAction
//
testInitializeAction.Conditions.Add(preFunctionTopicCount);
resources.ApplyResources(testInitializeAction, "testInitializeAction");
//
// preFunctionTopicCount
//
preFunctionTopicCount.Enabled = true;
preFunctionTopicCount.Name = "preFunctionTopicCount";
preFunctionTopicCount.ResultSet = 1;
preFunctionTopicCount.RowCount = 8;
//
// testCleanupAction
//
testCleanupAction.Conditions.Add(postFunctionTopicCount);
resources.ApplyResources(testCleanupAction, "testCleanupAction");
//
// postFunctionTopicCount
//
postFunctionTopicCount.Enabled = true;
postFunctionTopicCount.Name = "postFunctionTopicCount";
postFunctionTopicCount.ResultSet = 1;
postFunctionTopicCount.RowCount = 1;
//
// dbo_FindTopicIDsTest_PretestAction
//
dbo_FindTopicIDsTest_PretestAction.Conditions.Add(preFindAttributeCount);
resources.ApplyResources(dbo_FindTopicIDsTest_PretestAction, "dbo_FindTopicIDsTest_PretestAction");
//
// preFindAttributeCount
//
preFindAttributeCount.Enabled = true;
preFindAttributeCount.Name = "preFindAttributeCount";
preFindAttributeCount.ResultSet = 1;
preFindAttributeCount.RowCount = 3;
//
// dbo_GetExtendedAttributeTest_PretestAction
//
dbo_GetExtendedAttributeTest_PretestAction.Conditions.Add(preGetExtendedAttributeCount);
resources.ApplyResources(dbo_GetExtendedAttributeTest_PretestAction, "dbo_GetExtendedAttributeTest_PretestAction");
//
// preGetExtendedAttributeCount
//
preGetExtendedAttributeCount.Enabled = true;
preGetExtendedAttributeCount.Name = "preGetExtendedAttributeCount";
preGetExtendedAttributeCount.ResultSet = 1;
preGetExtendedAttributeCount.RowCount = 1;
//
// dbo_GetExtendedAttributeTestData
//
this.dbo_GetExtendedAttributeTestData.PosttestAction = null;
this.dbo_GetExtendedAttributeTestData.PretestAction = dbo_GetExtendedAttributeTest_PretestAction;
this.dbo_GetExtendedAttributeTestData.TestAction = dbo_GetExtendedAttributeTest_TestAction;
//
// dbo_GetParentIDTestData
//
this.dbo_GetParentIDTestData.PosttestAction = null;
this.dbo_GetParentIDTestData.PretestAction = null;
this.dbo_GetParentIDTestData.TestAction = dbo_GetParentIDTest_TestAction;
//
// dbo_GetTopicIDTestData
//
this.dbo_GetTopicIDTestData.PosttestAction = null;
this.dbo_GetTopicIDTestData.PretestAction = null;
this.dbo_GetTopicIDTestData.TestAction = dbo_GetTopicIDTest_TestAction;
//
// dbo_GetUniqueKeyTestData
//
this.dbo_GetUniqueKeyTestData.PosttestAction = null;
this.dbo_GetUniqueKeyTestData.PretestAction = null;
this.dbo_GetUniqueKeyTestData.TestAction = dbo_GetUniqueKeyTest_TestAction;
//
// dbo_FindTopicIDsTestData
//
this.dbo_FindTopicIDsTestData.PosttestAction = null;
this.dbo_FindTopicIDsTestData.PretestAction = dbo_FindTopicIDsTest_PretestAction;
this.dbo_FindTopicIDsTestData.TestAction = dbo_FindTopicIDsTest_TestAction;
//
// dbo_GetAttributesTestData
//
this.dbo_GetAttributesTestData.PosttestAction = dbo_GetAttributesTest_PosttestAction;
this.dbo_GetAttributesTestData.PretestAction = dbo_GetAttributesTest_PretestAction;
this.dbo_GetAttributesTestData.TestAction = dbo_GetAttributesTest_TestAction;
//
// dbo_GetChildTopicIDsTestData
//
this.dbo_GetChildTopicIDsTestData.PosttestAction = null;
this.dbo_GetChildTopicIDsTestData.PretestAction = null;
this.dbo_GetChildTopicIDsTestData.TestAction = dbo_GetChildTopicIDsTest_TestAction;
//
// Functions
//
this.TestCleanupAction = testCleanupAction;
this.TestInitializeAction = testInitializeAction;
}
#endregion
#region Additional test attributes
//
// You can use the following additional attributes as you write your tests:
//
// Use ClassInitialize to run code before running the first test in the class
// [ClassInitialize()]
// public static void MyClassInitialize(TestContext testContext) { }
//
// Use ClassCleanup to run code after all tests in a class have run
// [ClassCleanup()]
// public static void MyClassCleanup() { }
//
#endregion
[TestMethod()]
public void dbo_GetExtendedAttributeTest() {
SqlDatabaseTestActions testActions = this.dbo_GetExtendedAttributeTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_GetParentIDTest() {
SqlDatabaseTestActions testActions = this.dbo_GetParentIDTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_GetTopicIDTest() {
SqlDatabaseTestActions testActions = this.dbo_GetTopicIDTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_GetUniqueKeyTest() {
SqlDatabaseTestActions testActions = this.dbo_GetUniqueKeyTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_FindTopicIDsTest() {
SqlDatabaseTestActions testActions = this.dbo_FindTopicIDsTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_GetAttributesTest() {
SqlDatabaseTestActions testActions = this.dbo_GetAttributesTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
[TestMethod()]
public void dbo_GetChildTopicIDsTest() {
SqlDatabaseTestActions testActions = this.dbo_GetChildTopicIDsTestData;
// Execute the pre-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PretestAction != null), "Executing pre-test script...");
SqlExecutionResult[] pretestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PretestAction);
try {
// Execute the test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.TestAction != null), "Executing test script...");
SqlExecutionResult[] testResults = TestService.Execute(this.ExecutionContext, this.PrivilegedContext, testActions.TestAction);
}
finally {
// Execute the post-test script
//
System.Diagnostics.Trace.WriteLineIf((testActions.PosttestAction != null), "Executing post-test script...");
SqlExecutionResult[] posttestResults = TestService.Execute(this.PrivilegedContext, this.PrivilegedContext, testActions.PosttestAction);
}
}
private SqlDatabaseTestActions dbo_GetExtendedAttributeTestData;
private SqlDatabaseTestActions dbo_GetParentIDTestData;
private SqlDatabaseTestActions dbo_GetTopicIDTestData;
private SqlDatabaseTestActions dbo_GetUniqueKeyTestData;
private SqlDatabaseTestActions dbo_FindTopicIDsTestData;
private SqlDatabaseTestActions dbo_GetAttributesTestData;
private SqlDatabaseTestActions dbo_GetChildTopicIDsTestData;
}
}