forked from dataplat/dbachecks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test-Pester.XML
1975 lines (1975 loc) · 552 KB
/
Test-Pester.XML
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<test-results xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="nunit_schema_2.5.xsd" name="Pester" total="1388" errors="0" failures="0" not-run="0" inconclusive="0" ignored="0" skipped="0" invalid="0" date="2018-11-28" time="19:06:12">
<environment user="VssAdministrator" machine-name="factoryvm-az567" cwd="D:\a\1\s" user-domain="factoryvm-az567" platform="Microsoft Windows Server 2016 Datacenter|C:\Windows|\Device\Harddisk0\Partition2" nunit-version="2.5.8.0" os-version="10.0.14393" clr-version="4.0.30319.42000" />
<culture-info current-culture="en-US" current-uiculture="en-US" />
<test-suite type="TestFixture" name="Pester" executed="True" result="Success" success="True" time="25.1672" asserts="0" description="Pester">
<results>
<test-suite type="TestFixture" name="D:\a\1\s\tests\checks\AgentChecks.Tests.ps1" executed="True" result="Success" success="True" time="1.8784" asserts="0" description="D:\a\1\s\tests\checks\AgentChecks.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Checking Agent.Tests.ps1 checks" executed="True" result="Success" success="True" time="1.8784" asserts="0" description="Checking Agent.Tests.ps1 checks">
<results>
<test-suite type="TestFixture" name="Checking Database Mail XPs" executed="True" result="Success" success="True" time="1.8784" asserts="0" description="Checking Database Mail XPs">
<results>
<test-suite type="ParameterizedTest" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="1.7443" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $false" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Fails Check Correctly for Config 1 and expected value $false" time="1.6354" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $true" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Fails Check Correctly for Config 0 and expected value $true" time="0.1089" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0426" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 0 and expected value $false" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Passes Check Correctly for Config 0 and expected value $false" time="0.025" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 1 and expected value $true" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Passes Check Correctly for Config 1 and expected value $true" time="0.0176" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Agent.Tests.ps1 checks.Checking Database Mail XPs.Should call the mocks" time="0.0915" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\checks\DatabaseChecks.Tests.ps1" executed="True" result="Success" success="True" time="1.7881" asserts="0" description="D:\a\1\s\tests\checks\DatabaseChecks.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Checking Database.Assertions.ps1 assertions" executed="True" result="Success" success="True" time="1.7881" asserts="0" description="Checking Database.Assertions.ps1 assertions">
<results>
<test-suite type="TestFixture" name="Testing Get-Database" executed="True" result="Success" success="True" time="0.2634" asserts="0" description="Testing Get-Database">
<results>
<test-case description="Should have a Instance parameter" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should have a Instance parameter" time="0.1203" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a ExcludedDbs parameter" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should have a ExcludedDbs parameter" time="0.01" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a Requiredinfo parameter" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should have a Requiredinfo parameter" time="0.0104" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a Exclusions parameter" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should have a Exclusions parameter" time="0.0107" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should return the Database Names with the Requiredinfo switch parameter value Name" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should return the Database Names with the Requiredinfo switch parameter value Name" time="0.0617" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Exclude Databases that are specified for the Name Required Info" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should Exclude Databases that are specified for the Name Required Info" time="0.017" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Exclude none accessible databases if the NotAccessible value for Exclusions parameter is used" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should Exclude none accessible databases if the NotAccessible value for Exclusions parameter is used" time="0.02" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should call the Mocks" name="Checking Database.Assertions.ps1 assertions.Testing Get-Database.Should call the Mocks" time="0.0132" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Assert-DatabaseMaxDop " executed="True" result="Success" success="True" time="0.1666" asserts="0" description="Testing Assert-DatabaseMaxDop ">
<results>
<test-case description="Passes the test successfully" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseMaxDop .Passes the test successfully" time="0.1353" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails the test successfully" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseMaxDop .Fails the test successfully" time="0.0203" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Calls the Mocks successfully" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseMaxDop .Calls the Mocks successfully" time="0.0109" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Assert-DatabaseStatus " executed="True" result="Success" success="True" time="0.7588" asserts="0" description="Testing Assert-DatabaseStatus ">
<results>
<test-case description="It Should Pass when all databases are ok" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Pass when all databases are ok" time="0.0787" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is readonly" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is readonly" time="0.1928" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Not Fail for a database that is readonly when it is excluded" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Not Fail for a database that is readonly when it is excluded" time="0.0297" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is offline" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is offline" time="0.1231" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Not Fail for a database that is offline when it is excluded" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Not Fail for a database that is offline when it is excluded" time="0.0331" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is restoring" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is restoring" time="0.0479" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Not Fail for a database that is restoring when it is excluded" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Not Fail for a database that is restoring when it is excluded" time="0.0246" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is Recovering" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is Recovering" time="0.0274" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is Recovery pending" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is Recovery pending" time="0.0358" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is AutoClosed" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is AutoClosed" time="0.0317" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is EmergencyMode" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is EmergencyMode" time="0.0284" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is Suspect" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is Suspect" time="0.0345" asserts="0" success="True" result="Success" executed="True" />
<test-case description="It Should Fail for a database that is Standby" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .It Should Fail for a database that is Standby" time="0.0305" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Not Fail for databases that are excluded" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .Should Not Fail for databases that are excluded" time="0.0201" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should call the Mocks successfully" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseStatus .Should call the Mocks successfully" time="0.0205" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Assert-DatabaseDuplicateIndex" executed="True" result="Success" success="True" time="0.4601" asserts="0" description="Testing Assert-DatabaseDuplicateIndex">
<results>
<test-case description="Should pass when there are no Duplicate Indexes" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseDuplicateIndex.Should pass when there are no Duplicate Indexes" time="0.0606" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail for one duplicate index" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseDuplicateIndex.Should fail for one duplicate index" time="0.0732" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail for more than one duplicate index" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseDuplicateIndex.Should fail for more than one duplicate index" time="0.3263" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Assert-DatabaseExists" executed="True" result="Success" success="True" time="0.1393" asserts="0" description="Testing Assert-DatabaseExists">
<results>
<test-case description="Should have a Instance parameter" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should have a Instance parameter" time="0.0323" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a ExpectedDB parameter" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should have a ExpectedDB parameter" time="0.0099" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass when the database exists" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should Pass when the database exists" time="0.0296" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass when the database exists" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should Pass when the database exists" time="0.0125" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass when the database exists" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should Pass when the database exists" time="0.0201" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass when the database exists" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should Pass when the database exists" time="0.0118" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Fail when the database does not exist" name="Checking Database.Assertions.ps1 assertions.Testing Assert-DatabaseExists.Should Fail when the database does not exist" time="0.023" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\checks\InstanceChecks.Tests.ps1" executed="True" result="Success" success="True" time="1.8446" asserts="0" description="D:\a\1\s\tests\checks\InstanceChecks.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Checking Instance.Tests.ps1 checks" executed="True" result="Success" success="True" time="1.8446" asserts="0" description="Checking Instance.Tests.ps1 checks">
<results>
<test-suite type="TestFixture" name="Checking Backup Compression" executed="True" result="Success" success="True" time="0.2014" asserts="0" description="Checking Backup Compression">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.1234" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Fails Check Correctly for Config 1 and expected value $false" time="0.0964" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Fails Check Correctly for Config 0 and expected value $true" time="0.027" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0667" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 0 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Passes Check Correctly for Config 0 and expected value $false" time="0.0513" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 1 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Passes Check Correctly for Config 1 and expected value $true" time="0.0154" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking Backup Compression.Should call the mocks" time="0.0113" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking Instance MaxDop" executed="True" result="Success" success="True" time="0.1723" asserts="0" description="Checking Instance MaxDop">
<results>
<test-case description="Passes Check Correctly with the use recommended parameter set to true" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Passes Check Correctly with the use recommended parameter set to true" time="0.0613" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly with the use recommended parameter set to true" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Fails Check Correctly with the use recommended parameter set to true" time="0.0444" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Should call the mocks" time="0.0112" asserts="0" success="True" result="Success" executed="True" />
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Passes Check Correctly with a specified value <MaxDopValue>" executed="True" result="Success" success="True" time="0.0163" asserts="0" description="Passes Check Correctly with a specified value <MaxDopValue>">
<results>
<test-case description="Passes Check Correctly with a specified value 5" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Passes Check Correctly with a specified value 5" time="0.0163" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Fails Check Correctly with with a specified value <MaxDopValue>" executed="True" result="Success" success="True" time="0.039" asserts="0" description="Fails Check Correctly with with a specified value <MaxDopValue>">
<results>
<test-case description="Fails Check Correctly with with a specified value 5" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Fails Check Correctly with with a specified value 5" time="0.0205" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly with with a specified value 0" name="Checking Instance.Tests.ps1 checks.Checking Instance MaxDop.Fails Check Correctly with with a specified value 0" time="0.0185" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking tempdb size" executed="True" result="Success" success="True" time="0.0962" asserts="0" description="Checking tempdb size">
<results>
<test-case description="Should pass the test when all tempdb files are the same size" name="Checking Instance.Tests.ps1 checks.Checking tempdb size.Should pass the test when all tempdb files are the same size" time="0.0658" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail when all of the tempdb files are not the same size" name="Checking Instance.Tests.ps1 checks.Checking tempdb size.Should fail when all of the tempdb files are not the same size" time="0.0304" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking Supported Build" executed="True" result="Success" success="True" time="0.2422" asserts="0" description="Checking Supported Build">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly when the current build is not behind the BuildBehind value of <BuildBehind>" executed="True" result="Success" success="True" time="0.0903" asserts="0" description="Passed check correctly when the current build is not behind the BuildBehind value of <BuildBehind>">
<results>
<test-case description="Passed check correctly when the current build is not behind the BuildBehind value of 1SP" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly when the current build is not behind the BuildBehind value of 1SP" time="0.0764" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passed check correctly when the current build is not behind the BuildBehind value of 1CU" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly when the current build is not behind the BuildBehind value of 1CU" time="0.0139" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly when the current build is behind the BuildBehind value of <BuildBehind>" executed="True" result="Success" success="True" time="0.0509" asserts="0" description="Failed check correctly when the current build is behind the BuildBehind value of <BuildBehind>">
<results>
<test-case description="Failed check correctly when the current build is behind the BuildBehind value of 1SP" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly when the current build is behind the BuildBehind value of 1SP" time="0.0315" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed check correctly when the current build is behind the BuildBehind value of 1CU" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly when the current build is behind the BuildBehind value of 1CU" time="0.0193" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly with a SupportedUntil date > today" executed="True" result="Success" success="True" time="0.033" asserts="0" description="Passed check correctly with a SupportedUntil date > today">
<results>
<test-case description="Passed check correctly with a SupportedUntil date > today" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly with a SupportedUntil date > today(11/28/2018 19:05:50)" time="0.033" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly with a SupportedUntil date < today" executed="True" result="Success" success="True" time="0.0247" asserts="0" description="Failed check correctly with a SupportedUntil date < today">
<results>
<test-case description="Failed check correctly with a SupportedUntil date < today" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly with a SupportedUntil date < today(11/28/2018 19:05:50)" time="0.0247" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly with the BuildWarning window > today" executed="True" result="Success" success="True" time="0.013" asserts="0" description="Passed check correctly with the BuildWarning window > today">
<results>
<test-case description="Passed check correctly with the BuildWarning window > today" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Passed check correctly with the BuildWarning window > today(11/28/2018 19:05:50,6)" time="0.013" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly with the BuildWarning window < today" executed="True" result="Success" success="True" time="0.0303" asserts="0" description="Failed check correctly with the BuildWarning window < today">
<results>
<test-case description="Failed check correctly with the BuildWarning window < today" name="Checking Instance.Tests.ps1 checks.Checking Supported Build.Failed check correctly with the BuildWarning window < today(11/28/2018 19:05:50,6)" time="0.0303" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking Trace Flags" executed="True" result="Success" success="True" time="0.3152" asserts="0" description="Checking Trace Flags">
<results>
<test-case description="Should pass correctly when the trace flag exists and it is the only one" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should pass correctly when the trace flag exists and it is the only one" time="0.0652" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail correctly when the trace flag does not exist but there is a different trace flag" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should fail correctly when the trace flag does not exist but there is a different trace flag" time="0.0194" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail correctly when the trace flag does not exist and there is no trace flag" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should fail correctly when the trace flag does not exist and there is no trace flag" time="0.019" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass Correctly for more than one trace flag when they all exist" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should Pass Correctly for more than one trace flag when they all exist" time="0.0364" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass Correctly for more than one trace flag when they exist but there are extra trace flags" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should Pass Correctly for more than one trace flag when they exist but there are extra trace flags" time="0.0246" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Fail Correctly when checking more than one trace flag when 1 is missing" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should Fail Correctly when checking more than one trace flag when 1 is missing" time="0.0519" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Fail Correctly when checking more than one trace flag when 2 are missing" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should Fail Correctly when checking more than one trace flag when 2 are missing" time="0.052" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should pass correctly when no trace flag exists and none expected" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should pass correctly when no trace flag exists and none expected" time="0.0217" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail correctly when a trace flag exists and none expected" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags.Should fail correctly when a trace flag exists and none expected" time="0.0251" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking Trace Flags Not Expected" executed="True" result="Success" success="True" time="0.1997" asserts="0" description="Checking Trace Flags Not Expected">
<results>
<test-case description="Should pass correctly when the trace flag exists and it is not the one expected to be running" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should pass correctly when the trace flag exists and it is not the one expected to be running" time="0.0599" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should pass correctly when no trace flag is running" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should pass correctly when no trace flag is running" time="0.0147" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail correctly when the trace flag is running and is the only one" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should fail correctly when the trace flag is running and is the only one" time="0.0185" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail correctly for one trace flag when the trace flag is running but there is another one running as well" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should fail correctly for one trace flag when the trace flag is running but there is another one running as well" time="0.0191" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass Correctly for more than one trace flag when no trace flag is set" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should Pass Correctly for more than one trace flag when no trace flag is set" time="0.0271" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Pass Correctly for more than one trace flag when a different one is running" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should Pass Correctly for more than one trace flag when a different one is running" time="0.0193" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Fail Correctly for more than one trace flag when one is running" name="Checking Instance.Tests.ps1 checks.Checking Trace Flags Not Expected.Should Fail Correctly for more than one trace flag when one is running" time="0.0412" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking CLR Enabled" executed="True" result="Success" success="True" time="0.1876" asserts="0" description="Checking CLR Enabled">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.1466" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Fails Check Correctly for Config 1 and expected value $false" time="0.1243" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Fails Check Correctly for Config 0 and expected value $true" time="0.0223" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0284" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 0 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Passes Check Correctly for Config 0 and expected value $false" time="0.0152" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 1 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Passes Check Correctly for Config 1 and expected value $true" time="0.0133" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking CLR Enabled.Should call the mocks" time="0.0126" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking Cross DB Ownership Chaining" executed="True" result="Success" success="True" time="0.1821" asserts="0" description="Checking Cross DB Ownership Chaining">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.078" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Fails Check Correctly for Config 1 and expected value $false" time="0.0521" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Fails Check Correctly for Config 0 and expected value $true" time="0.0259" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0934" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 0 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Passes Check Correctly for Config 0 and expected value $false" time="0.0789" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 1 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Passes Check Correctly for Config 1 and expected value $true" time="0.0145" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking Cross DB Ownership Chaining.Should call the mocks" time="0.0108" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking AdHoc Distributed Queries Enabled" executed="True" result="Success" success="True" time="0.1284" asserts="0" description="Checking AdHoc Distributed Queries Enabled">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0775" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Fails Check Correctly for Config 1 and expected value $false" time="0.0581" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Fails Check Correctly for Config 0 and expected value $true" time="0.0194" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0386" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 0 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Passes Check Correctly for Config 0 and expected value $false" time="0.02" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 1 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Passes Check Correctly for Config 1 and expected value $true" time="0.0186" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking AdHoc Distributed Queries Enabled.Should call the mocks" time="0.0123" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Checking XPCmdShell is disabled" executed="True" result="Success" success="True" time="0.1193" asserts="0" description="Checking XPCmdShell is disabled">
<results>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Fails Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.0782" asserts="0" description="Fails Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Fails Check Correctly for Config 1 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Fails Check Correctly for Config 1 and expected value $true" time="0.0589" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Fails Check Correctly for Config 0 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Fails Check Correctly for Config 0 and expected value $false" time="0.0194" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="ParameterizedTest" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Passes Check Correctly for Config <spconfig> and expected value <expected>" executed="True" result="Success" success="True" time="0.03" asserts="0" description="Passes Check Correctly for Config <spconfig> and expected value <expected>">
<results>
<test-case description="Passes Check Correctly for Config 1 and expected value $false" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Passes Check Correctly for Config 1 and expected value $false" time="0.0158" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Passes Check Correctly for Config 0 and expected value $true" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Passes Check Correctly for Config 0 and expected value $true" time="0.0142" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Should call the mocks" name="Checking Instance.Tests.ps1 checks.Checking XPCmdShell is disabled.Should call the mocks" time="0.011" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\checks\ServerChecks.Tests.ps1" executed="True" result="Success" success="True" time="2.2783" asserts="0" description="D:\a\1\s\tests\checks\ServerChecks.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Checking ServerChecks.Tests" executed="True" result="Success" success="True" time="2.2783" asserts="0" description="Checking ServerChecks.Tests">
<results>
<test-suite type="TestFixture" name="Testing Assert-CPUPrioritisation" executed="True" result="Success" success="True" time="0.1321" asserts="0" description="Testing Assert-CPUPrioritisation">
<results>
<test-case description="Should Pass When value set correctly" name="Checking ServerChecks.Tests.Testing Assert-CPUPrioritisation.Should Pass When value set correctly" time="0.1126" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail When value set incorrectly" name="Checking ServerChecks.Tests.Testing Assert-CPUPrioritisation.Should fail When value set incorrectly" time="0.0195" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Assert-DiskAllocationUnit" executed="True" result="Success" success="True" time="0.0855" asserts="0" description="Testing Assert-DiskAllocationUnit">
<results>
<test-case description="Should pass when all SQLDisks are formatted with the 65536b (64kb) block allocation unit size" name="Checking ServerChecks.Tests.Testing Assert-DiskAllocationUnit.Should pass when all SQLDisks are formatted with the 65536b (64kb) block allocation unit size" time="0.0681" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should fail when any SQLDisks is formatted with a block allocation unit size that isn't 65536b (64KB)" name="Checking ServerChecks.Tests.Testing Assert-DiskAllocationUnit.Should fail when any SQLDisks is formatted with a block allocation unit size that isn't 65536b (64KB)" time="0.0174" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags Server with a server that exists" executed="True" result="Success" success="True" time="0.4949" asserts="0" description="Testing Get-AllServerInfo for Tags Server with a server that exists">
<results>
<test-case description="Should get the right results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that exists.Should get the right results for PingComputer" time="0.4179" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that exists.Should get the right results for DiskAllocationUnit" time="0.0216" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that exists.Should get the right results for PowerPlan" time="0.0093" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that exists.Should get the right results for SPN" time="0.0229" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that exists.Should get the right results for DiskCapacity" time="0.0232" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags Server with a server that doesn't exist" executed="True" result="Success" success="True" time="0.1522" asserts="0" description="Testing Get-AllServerInfo for Tags Server with a server that doesn't exist">
<results>
<test-case description="Should get the right results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that doesn't exist.Should get the right results for PingComputer" time="0.098" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that doesn't exist.Should get the right results for DiskAllocationUnit" time="0.0196" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that doesn't exist.Should get the right results for PowerPlan" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that doesn't exist.Should get the right results for SPN" time="0.0128" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags Server with a server that doesn't exist.Should get the right results for DiskCapacity" time="0.0137" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags PowerPlan with a server that exists" executed="True" result="Success" success="True" time="0.1611" asserts="0" description="Testing Get-AllServerInfo for Tags PowerPlan with a server that exists">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that exists.Should have no results for PingComputer" time="0.1074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that exists.Should have no results for DiskAllocationUnit" time="0.0299" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that exists.Should get the right results for PowerPlan" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that exists.Should have no results for SPN" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that exists.Should have no results for DiskCapacity" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist" executed="True" result="Success" success="True" time="0.094" asserts="0" description="Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist.Should have no results for PingComputer" time="0.0636" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist.Should have no results for DiskAllocationUnit" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist.Should get the right results for PowerPlan" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist.Should have no results for SPN" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PowerPlan with a server that doesn't exist.Should have no results for DiskCapacity" time="0.0092" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags PingComputer with a server that exists" executed="True" result="Success" success="True" time="0.1176" asserts="0" description="Testing Get-AllServerInfo for Tags PingComputer with a server that exists">
<results>
<test-case description="Should have the right results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that exists.Should have the right results for PingComputer" time="0.082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that exists.Should have no results for DiskAllocationUnit" time="0.0087" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that exists.Should have no results results for PowerPlan" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that exists.Should have no results for SPN" time="0.0101" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that exists.Should have no results for DiskCapacity" time="0.0087" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist" executed="True" result="Success" success="True" time="0.1029" asserts="0" description="Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist">
<results>
<test-case description="Should get the right results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist.Should get the right results for PingComputer" time="0.071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist.Should have no results for DiskAllocationUnit" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist.Should have no results for PowerPlan" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist.Should have no results for SPN" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags PingComputer with a server that doesn't exist.Should have no results for DiskCapacity" time="0.0078" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists" executed="True" result="Success" success="True" time="0.1163" asserts="0" description="Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists.Should have no results for PingComputer" time="0.0721" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists.Should have the right results for DiskAllocationUnit" time="0.0189" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists.Should have no results results for PowerPlan" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists.Should have no results for SPN" time="0.009" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that exists.Should have no results for DiskCapacity" time="0.0087" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist" executed="True" result="Success" success="True" time="0.1094" asserts="0" description="Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist.Should have no results for PingComputer" time="0.0613" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist.Should have the right results for DiskAllocationUnit" time="0.0215" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist.Should have no results for PowerPlan" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist.Should have no results for SPN" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskAllocationUnit with a server that doesn't exist.Should have no results for DiskCapacity" time="0.0114" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags SPN with a server that exists" executed="True" result="Success" success="True" time="0.1069" asserts="0" description="Testing Get-AllServerInfo for Tags SPN with a server that exists">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that exists.Should have no results for PingComputer" time="0.0582" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that exists.Should have no results for DiskAllocationUnit" time="0.01" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that exists.Should have no results results for PowerPlan" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that exists.Should have the right results for SPN" time="0.0213" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that exists.Should have no results for DiskCapacity" time="0.0091" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist" executed="True" result="Success" success="True" time="0.0953" asserts="0" description="Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist.Should have no results for PingComputer" time="0.063" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist.Should have no results for DiskAllocationUnit" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist.Should have no results for PowerPlan" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist.Should have the right results for SPN" time="0.0091" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags SPN with a server that doesn't exist.Should have no results for DiskCapacity" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists" executed="True" result="Success" success="True" time="0.1629" asserts="0" description="Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists.Should have no results for PingComputer" time="0.1225" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists.Should have no results for DiskAllocationUnit" time="0.009" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists.Should have no results results for PowerPlan" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists.Should have no results for SPN" time="0.0078" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that exists.Should have the right results for DiskCapacity" time="0.0169" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist" executed="True" result="Success" success="True" time="0.1015" asserts="0" description="Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist.Should have no results for PingComputer" time="0.0674" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist.Should have no results for DiskAllocationUnit" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist.Should have no results for PowerPlan" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist.Should have no results for SPN" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity with a server that doesn't exist.Should have the right results for DiskCapacity" time="0.0108" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists" executed="True" result="Success" success="True" time="0.1425" asserts="0" description="Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists.Should have no results for PingComputer" time="0.1018" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists.Should get the right results for DiskAllocationUnit" time="0.0105" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists.Should have no results results for PowerPlan" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists.Should get the right results for SPN" time="0.0113" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that exists.Should have the right results for DiskCapacity" time="0.0114" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist" executed="True" result="Success" success="True" time="0.1033" asserts="0" description="Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist">
<results>
<test-case description="Should have no results for PingComputer" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist.Should have no results for PingComputer" time="0.0582" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for DiskAllocationUnit" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist.Should get the right results for DiskAllocationUnit" time="0.0165" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have no results for PowerPlan" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist.Should have no results for PowerPlan" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should get the right results for SPN" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist.Should get the right results for SPN" time="0.0099" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have the right results for DiskCapacity" name="Checking ServerChecks.Tests.Testing Get-AllServerInfo for Tags DiskCapacity,SPN,DiskAllocationUnit with a server that doesn't exist.Should have the right results for DiskCapacity" time="0.0113" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Export-DbcConfig.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Export-DbcConfig.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-CheckFile.Tests.ps1" executed="True" result="Success" success="True" time="0.99" asserts="0" description="D:\a\1\s\tests\functions\Get-CheckFile.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Testing Get-CheckFile function" executed="True" result="Success" success="True" time="0.99" asserts="0" description="Testing Get-CheckFile function">
<results>
<test-suite type="TestFixture" name="Testing with files matching by name" executed="True" result="Success" success="True" time="0.3059" asserts="0" description="Testing with files matching by name">
<results>
<test-suite type="ParameterizedTest" name="Testing Get-CheckFile function.Testing with files matching by name.<MatchingFile> is found when Check is <CheckValue>" executed="True" result="Success" success="True" time="0.2794" asserts="0" description="<MatchingFile> is found when Check is <CheckValue>">
<results>
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is One" name="Testing Get-CheckFile function.Testing with files matching by name.C:\Checks\One.Tests.ps1 is found when Check is One" time="0.2185" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Two.Tests.ps1 is found when Check is Two" name="Testing Get-CheckFile function.Testing with files matching by name.C:\Checks\Two.Tests.ps1 is found when Check is Two" time="0.0317" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Three.Tests.ps1 is found when Check is Three" name="Testing Get-CheckFile function.Testing with files matching by name.C:\Checks\Three.Tests.ps1 is found when Check is Three" time="0.0292" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="When two files match, both should be returned" name="Testing Get-CheckFile function.Testing with files matching by name.When two files match, both should be returned" time="0.0265" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing with files matching by tag" executed="True" result="Success" success="True" time="0.3329" asserts="0" description="Testing with files matching by tag">
<results>
<test-suite type="ParameterizedTest" name="Testing Get-CheckFile function.Testing with files matching by tag.<MatchingFile> is found when Check is <CheckValue>" executed="True" result="Success" success="True" time="0.2684" asserts="0" description="<MatchingFile> is found when Check is <CheckValue>">
<results>
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is FirstCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\One.Tests.ps1 is found when Check is FirstCheck" time="0.0717" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is SecondCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\One.Tests.ps1 is found when Check is SecondCheck" time="0.0365" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is ThirdCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\One.Tests.ps1 is found when Check is ThirdCheck" time="0.0367" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Two.Tests.ps1 is found when Check is FourthCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\Two.Tests.ps1 is found when Check is FourthCheck" time="0.0527" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Two.Tests.ps1 is found when Check is FifthCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\Two.Tests.ps1 is found when Check is FifthCheck" time="0.0352" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Three.Tests.ps1 is found when Check is SixthCheck" name="Testing Get-CheckFile function.Testing with files matching by tag.C:\Checks\Three.Tests.ps1 is found when Check is SixthCheck" time="0.0357" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="When two files match, both should be returned" name="Testing Get-CheckFile function.Testing with files matching by tag.When two files match, both should be returned" time="0.0644" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing to make sure duplicates are not returned" executed="True" result="Success" success="True" time="0.2935" asserts="0" description="Testing to make sure duplicates are not returned">
<results>
<test-suite type="ParameterizedTest" name="Testing Get-CheckFile function.Testing to make sure duplicates are not returned.<MatchingFile> is found when Check is <CheckValue>" executed="True" result="Success" success="True" time="0.2935" asserts="0" description="<MatchingFile> is found when Check is <CheckValue>">
<results>
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is One,FirstCheck" name="Testing Get-CheckFile function.Testing to make sure duplicates are not returned.C:\Checks\One.Tests.ps1 is found when Check is One,FirstCheck" time="0.0614" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\One.Tests.ps1 is found when Check is One,FirstCheck,SecondCheck" name="Testing Get-CheckFile function.Testing to make sure duplicates are not returned.C:\Checks\One.Tests.ps1 is found when Check is One,FirstCheck,SecondCheck" time="0.124" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Two.Tests.ps1 is found when Check is Two,FourthCheck,InvalidCheck" name="Testing Get-CheckFile function.Testing to make sure duplicates are not returned.C:\Checks\Two.Tests.ps1 is found when Check is Two,FourthCheck,InvalidCheck" time="0.0478" asserts="0" success="True" result="Success" executed="True" />
<test-case description="C:\Checks\Three.Tests.ps1 is found when Check is Three,Three,Three" name="Testing Get-CheckFile function.Testing to make sure duplicates are not returned.C:\Checks\Three.Tests.ps1 is found when Check is Three,Three,Three" time="0.0604" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="Testing things that don't match" executed="True" result="Success" success="True" time="0.0577" asserts="0" description="Testing things that don't match">
<results>
<test-case description="If there is no match, no file should be returned" name="Testing Get-CheckFile function.Testing things that don't match.If there is no match, no file should be returned" time="0.0577" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-CheckInformation.tests.ps1" executed="True" result="Success" success="True" time="0.3725" asserts="0" description="D:\a\1\s\tests\functions\Get-CheckInformation.tests.ps1">
<results>
<test-suite type="TestFixture" name="Testing Get-CheckInformation" executed="True" result="Success" success="True" time="0.3725" asserts="0" description="Testing Get-CheckInformation">
<results>
<test-suite type="TestFixture" name="Input" executed="True" result="Success" success="True" time="0.1005" asserts="0" description="Input">
<results>
<test-case description="Should have a Group Parameter" name="Testing Get-CheckInformation.Input.Should have a Group Parameter" time="0.0653" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a Check Parameter" name="Testing Get-CheckInformation.Input.Should have a Check Parameter" time="0.0095" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a AllChecks Parameter" name="Testing Get-CheckInformation.Input.Should have a AllChecks Parameter" time="0.0168" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should have a ExcludeCheck Parameter" name="Testing Get-CheckInformation.Input.Should have a ExcludeCheck Parameter" time="0.0089" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Output" executed="True" result="Success" success="True" time="0.2721" asserts="0" description="Output">
<results>
<test-case description="Should Return All of the checks for a group when the Check equals the group and nothing excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group when the Check equals the group and nothing excluded" time="0.0801" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return All of the checks for a group When AllChecks is specified and nothing excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group When AllChecks is specified and nothing excluded" time="0.0202" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return one check for a group when one unique tag is specified and nothing excluded" name="Testing Get-CheckInformation.Output.Should Return one check for a group when one unique tag is specified and nothing excluded" time="0.0271" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return two checks for a group when two unique tags are specified and nothing excluded" name="Testing Get-CheckInformation.Output.Should Return two checks for a group when two unique tags are specified and nothing excluded" time="0.018" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should return a none-unique tag if a none-unique tag is specified and nothing is excluded" name="Testing Get-CheckInformation.Output.Should return a none-unique tag if a none-unique tag is specified and nothing is excluded" time="0.0179" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should return two none-unique tags if two none-unique tags are specified and nothing is excluded" name="Testing Get-CheckInformation.Output.Should return two none-unique tags if two none-unique tags are specified and nothing is excluded" time="0.0175" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return All of the checks for a group except the excluded ones when the Check equals the group and one check is excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group except the excluded ones when the Check equals the group and one check is excluded" time="0.0168" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return All of the checks for a group except the excluded ones when the Check equals the group and two checks are excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group except the excluded ones when the Check equals the group and two checks are excluded" time="0.0236" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return All of the checks for a group except the excluded ones when AllChecks is specified and one check is excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group except the excluded ones when AllChecks is specified and one check is excluded" time="0.0189" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Should Return All of the checks for a group except the excluded ones when AllChecks is specified and two checks are excluded" name="Testing Get-CheckInformation.Output.Should Return All of the checks for a group except the excluded ones when AllChecks is specified and two checks are excluded" time="0.0173" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Mocks Get-DbcCheck" name="Testing Get-CheckInformation.Output.Mocks Get-DbcCheck" time="0.0145" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-DatabaseDetail.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Get-DatabaseDetail.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-DbcCheck.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Get-DbcCheck.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-DbcConfig.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Get-DbcConfig.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-DbcConfigValue.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Get-DbcConfigValue.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Get-DbcTagCollection.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Get-DbcTagCollection.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Import-DbcConfig.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Import-DbcConfig.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Invoke-DbcCheck.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Invoke-DbcCheck.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Invoke-DbcConfigFile.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Invoke-DbcConfigFile.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\functions\Set-DbcConfig.Tests.ps1" executed="True" result="Success" success="True" time="0" asserts="0" description="D:\a\1\s\tests\functions\Set-DbcConfig.Tests.ps1">
<results />
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\InModule.Help.Tests.ps1" executed="True" result="Success" success="True" time="2.6466" asserts="0" description="D:\a\1\s\tests\InModule.Help.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Test help for Clear-DbcPowerBiDataSource" executed="True" result="Success" success="True" time="1.4161" asserts="0" description="Test help for Clear-DbcPowerBiDataSource">
<results>
<test-suite type="TestFixture" name="Test parameter help for Clear-DbcPowerBiDataSource" executed="True" result="Success" success="True" time="0.067" asserts="0" description="Test parameter help for Clear-DbcPowerBiDataSource">
<results>
<test-case description="Ran silently 10 tests" name="Test help for Clear-DbcPowerBiDataSource.Test parameter help for Clear-DbcPowerBiDataSource.Ran silently 10 tests" time="0.067" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Clear-DbcPowerBiDataSource.Ran silently 4 tests" time="1.3491" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Export-DbcConfig" executed="True" result="Success" success="True" time="0.0685" asserts="0" description="Test help for Export-DbcConfig">
<results>
<test-suite type="TestFixture" name="Test parameter help for Export-DbcConfig" executed="True" result="Success" success="True" time="0.0302" asserts="0" description="Test parameter help for Export-DbcConfig">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Export-DbcConfig.Test parameter help for Export-DbcConfig.Ran silently 7 tests" time="0.0302" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Export-DbcConfig.Ran silently 4 tests" time="0.0384" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Get-DbcCheck" executed="True" result="Success" success="True" time="0.0611" asserts="0" description="Test help for Get-DbcCheck">
<results>
<test-suite type="TestFixture" name="Test parameter help for Get-DbcCheck" executed="True" result="Success" success="True" time="0.0245" asserts="0" description="Test parameter help for Get-DbcCheck">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Get-DbcCheck.Test parameter help for Get-DbcCheck.Ran silently 7 tests" time="0.0245" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcCheck.Ran silently 4 tests" time="0.0366" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Get-DbcConfig" executed="True" result="Success" success="True" time="0.0619" asserts="0" description="Test help for Get-DbcConfig">
<results>
<test-suite type="TestFixture" name="Test parameter help for Get-DbcConfig" executed="True" result="Success" success="True" time="0.0247" asserts="0" description="Test parameter help for Get-DbcConfig">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Get-DbcConfig.Test parameter help for Get-DbcConfig.Ran silently 7 tests" time="0.0247" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcConfig.Ran silently 4 tests" time="0.0373" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Get-DbcConfigValue" executed="True" result="Success" success="True" time="0.0648" asserts="0" description="Test help for Get-DbcConfigValue">
<results>
<test-suite type="TestFixture" name="Test parameter help for Get-DbcConfigValue" executed="True" result="Success" success="True" time="0.0232" asserts="0" description="Test parameter help for Get-DbcConfigValue">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Get-DbcConfigValue.Test parameter help for Get-DbcConfigValue.Ran silently 7 tests" time="0.0232" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcConfigValue.Ran silently 4 tests" time="0.0415" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Get-DbcReleaseNote" executed="True" result="Success" success="True" time="0.0602" asserts="0" description="Test help for Get-DbcReleaseNote">
<results>
<test-suite type="TestFixture" name="Test parameter help for Get-DbcReleaseNote" executed="True" result="Success" success="True" time="0.024" asserts="0" description="Test parameter help for Get-DbcReleaseNote">
<results>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcReleaseNote.Test parameter help for Get-DbcReleaseNote.Ran silently 4 tests" time="0.024" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcReleaseNote.Ran silently 4 tests" time="0.0363" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Get-DbcTagCollection" executed="True" result="Success" success="True" time="0.0667" asserts="0" description="Test help for Get-DbcTagCollection">
<results>
<test-suite type="TestFixture" name="Test parameter help for Get-DbcTagCollection" executed="True" result="Success" success="True" time="0.0227" asserts="0" description="Test parameter help for Get-DbcTagCollection">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Get-DbcTagCollection.Test parameter help for Get-DbcTagCollection.Ran silently 7 tests" time="0.0227" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Get-DbcTagCollection.Ran silently 4 tests" time="0.044" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Import-DbcConfig" executed="True" result="Success" success="True" time="0.0714" asserts="0" description="Test help for Import-DbcConfig">
<results>
<test-suite type="TestFixture" name="Test parameter help for Import-DbcConfig" executed="True" result="Success" success="True" time="0.0319" asserts="0" description="Test parameter help for Import-DbcConfig">
<results>
<test-case description="Ran silently 10 tests" name="Test help for Import-DbcConfig.Test parameter help for Import-DbcConfig.Ran silently 10 tests" time="0.0319" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Import-DbcConfig.Ran silently 4 tests" time="0.0395" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Invoke-DbcCheck" executed="True" result="Success" success="True" time="0.3076" asserts="0" description="Test help for Invoke-DbcCheck">
<results>
<test-suite type="TestFixture" name="Test parameter help for Invoke-DbcCheck" executed="True" result="Success" success="True" time="0.2618" asserts="0" description="Test parameter help for Invoke-DbcCheck">
<results>
<test-case description="help for Invoke-DbcCheck has correct parameter type for Show" name="Test help for Invoke-DbcCheck.Test parameter help for Invoke-DbcCheck.help for Invoke-DbcCheck has correct parameter type for Show" time="0.2618" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Invoke-DbcCheck.Ran silently 4 tests" time="0.0458" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Invoke-DbcConfigFile" executed="True" result="Success" success="True" time="0.0853" asserts="0" description="Test help for Invoke-DbcConfigFile">
<results>
<test-suite type="TestFixture" name="Test parameter help for Invoke-DbcConfigFile" executed="True" result="Success" success="True" time="0.0454" asserts="0" description="Test parameter help for Invoke-DbcConfigFile">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Invoke-DbcConfigFile.Test parameter help for Invoke-DbcConfigFile.Ran silently 7 tests" time="0.0454" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Invoke-DbcConfigFile.Ran silently 4 tests" time="0.0399" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Reset-DbcConfig" executed="True" result="Success" success="True" time="0.063" asserts="0" description="Test help for Reset-DbcConfig">
<results>
<test-suite type="TestFixture" name="Test parameter help for Reset-DbcConfig" executed="True" result="Success" success="True" time="0.0236" asserts="0" description="Test parameter help for Reset-DbcConfig">
<results>
<test-case description="Ran silently 4 tests" name="Test help for Reset-DbcConfig.Test parameter help for Reset-DbcConfig.Ran silently 4 tests" time="0.0236" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Reset-DbcConfig.Ran silently 4 tests" time="0.0394" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Save-DbcRequiredModules" executed="True" result="Success" success="True" time="0.0629" asserts="0" description="Test help for Save-DbcRequiredModules">
<results>
<test-suite type="TestFixture" name="Test parameter help for Save-DbcRequiredModules" executed="True" result="Success" success="True" time="0.0252" asserts="0" description="Test parameter help for Save-DbcRequiredModules">
<results>
<test-case description="Ran silently 7 tests" name="Test help for Save-DbcRequiredModules.Test parameter help for Save-DbcRequiredModules.Ran silently 7 tests" time="0.0252" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Save-DbcRequiredModules.Ran silently 4 tests" time="0.0377" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Set-DbcConfig" executed="True" result="Success" success="True" time="0.0598" asserts="0" description="Test help for Set-DbcConfig">
<results>
<test-suite type="TestFixture" name="Test parameter help for Set-DbcConfig" executed="True" result="Success" success="True" time="0.0235" asserts="0" description="Test parameter help for Set-DbcConfig">
<results>
<test-case description="Ran silently 19 tests" name="Test help for Set-DbcConfig.Test parameter help for Set-DbcConfig.Ran silently 19 tests" time="0.0235" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Set-DbcConfig.Ran silently 4 tests" time="0.0363" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Start-DbcPowerBi" executed="True" result="Success" success="True" time="0.0665" asserts="0" description="Test help for Start-DbcPowerBi">
<results>
<test-suite type="TestFixture" name="Test parameter help for Start-DbcPowerBi" executed="True" result="Success" success="True" time="0.0262" asserts="0" description="Test parameter help for Start-DbcPowerBi">
<results>
<test-case description="Ran silently 10 tests" name="Test help for Start-DbcPowerBi.Test parameter help for Start-DbcPowerBi.Ran silently 10 tests" time="0.0262" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Start-DbcPowerBi.Ran silently 4 tests" time="0.0403" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Update-DbcPowerBiDataSource" executed="True" result="Success" success="True" time="0.0661" asserts="0" description="Test help for Update-DbcPowerBiDataSource">
<results>
<test-suite type="TestFixture" name="Test parameter help for Update-DbcPowerBiDataSource" executed="True" result="Success" success="True" time="0.0243" asserts="0" description="Test parameter help for Update-DbcPowerBiDataSource">
<results>
<test-case description="Ran silently 19 tests" name="Test help for Update-DbcPowerBiDataSource.Test parameter help for Update-DbcPowerBiDataSource.Ran silently 19 tests" time="0.0243" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Update-DbcPowerBiDataSource.Ran silently 4 tests" time="0.0419" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Test help for Update-DbcRequiredModules" executed="True" result="Success" success="True" time="0.0646" asserts="0" description="Test help for Update-DbcRequiredModules">
<results>
<test-suite type="TestFixture" name="Test parameter help for Update-DbcRequiredModules" executed="True" result="Success" success="True" time="0.026" asserts="0" description="Test parameter help for Update-DbcRequiredModules">
<results>
<test-case description="Ran silently 3 tests" name="Test help for Update-DbcRequiredModules.Test parameter help for Update-DbcRequiredModules.Ran silently 3 tests" time="0.026" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-case description="Ran silently 4 tests" name="Test help for Update-DbcRequiredModules.Ran silently 4 tests" time="0.0386" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\Reset-DbcConfig.Tests.ps1" executed="True" result="Success" success="True" time="0.9015" asserts="0" description="D:\a\1\s\tests\Reset-DbcConfig.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Testing Reset-DbcConfig" executed="True" result="Success" success="True" time="0.9015" asserts="0" description="Testing Reset-DbcConfig">
<results>
<test-case description="Resetting specific setting works" name="Testing Reset-DbcConfig.Resetting specific setting works" time="0.2875" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Resetting specific setting doesn't change anything else" name="Testing Reset-DbcConfig.Resetting specific setting doesn't change anything else" time="0.0964" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Resetting with wildcard resets all matching settings" name="Testing Reset-DbcConfig.Resetting with wildcard resets all matching settings" time="0.1653" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Resetting with wildcard resets only matching settings" name="Testing Reset-DbcConfig.Resetting with wildcard resets only matching settings" time="0.1028" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Resetting all resets really all" name="Testing Reset-DbcConfig.Resetting all resets really all" time="0.2495" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
</results>
</test-suite>
<test-suite type="TestFixture" name="D:\a\1\s\tests\Unit.Tests.ps1" executed="True" result="Success" success="True" time="12.4672" asserts="0" description="D:\a\1\s\tests\Unit.Tests.ps1">
<results>
<test-suite type="TestFixture" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly" executed="True" result="Success" success="True" time="9.8396" asserts="0" description="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly">
<results>
<test-suite type="TestFixture" name="Agent.Tests.ps1 - Checking Describes titles and tags" executed="True" result="Success" success="True" time="0.7598" asserts="0" description="Agent.Tests.ps1 - Checking Describes titles and tags">
<results>
<test-case description="Database Mail XPs Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Database Mail XPs Should Use a double quote after the Describe" time="0.4569" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail XPs should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Database Mail XPs should use a plural for tags" time="0.0158" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DatabaseMailEnabled should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.DatabaseMailEnabled should be Singular" time="0.0129" asserts="0" success="True" result="Success" executed="True" />
<test-case description="security should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.security should be Singular" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseMailEnabled should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseMailEnabled should be in the unique Tags returned from Get-DbcCheck" time="0.0092" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SQL Agent Account Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.SQL Agent Account Should Use a double quote after the Describe" time="0.0101" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SQL Agent Account should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.SQL Agent Account should use a plural for tags" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="AgentServiceAccount should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.AgentServiceAccount should be Singular" time="0.0137" asserts="0" success="True" result="Success" executed="True" />
<test-case description="ServiceAccount should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.ServiceAccount should be Singular" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AgentServiceAccount should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag AgentServiceAccount should be in the unique Tags returned from Get-DbcCheck" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DBA Operators Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.DBA Operators Should Use a double quote after the Describe" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DBA Operators should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.DBA Operators should use a plural for tags" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DbaOperator should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.DbaOperator should be Singular" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Operator should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Operator should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DbaOperator should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag DbaOperator should be in the unique Tags returned from Get-DbcCheck" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failsafe Operator Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Failsafe Operator Should Use a double quote after the Describe" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failsafe Operator should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Failsafe Operator should use a plural for tags" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="FailsafeOperator should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.FailsafeOperator should be Singular" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Operator should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Operator should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag FailsafeOperator should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag FailsafeOperator should be in the unique Tags returned from Get-DbcCheck" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail Profile Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Database Mail Profile Should Use a double quote after the Describe" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail Profile should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Database Mail Profile should use a plural for tags" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DatabaseMailProfile should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.DatabaseMailProfile should be Singular" time="0.0117" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseMailProfile should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseMailProfile should be in the unique Tags returned from Get-DbcCheck" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed Jobs Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Failed Jobs Should Use a double quote after the Describe" time="0.0089" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed Jobs should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Failed Jobs should use a plural for tags" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="FailedJob should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.FailedJob should be Singular" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag FailedJob should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag FailedJob should be in the unique Tags returned from Get-DbcCheck" time="0.0092" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Job Owner Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Valid Job Owner Should Use a double quote after the Describe" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Job Owner should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Valid Job Owner should use a plural for tags" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="ValidJobOwner should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.ValidJobOwner should be Singular" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag ValidJobOwner should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag ValidJobOwner should be in the unique Tags returned from Get-DbcCheck" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent Alerts Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Agent Alerts Should Use a double quote after the Describe" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent Alerts should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.Agent Alerts should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="AgentAlert should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.AgentAlert should be Singular" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AgentAlert should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Describes titles and tags.The first Tag AgentAlert should be in the unique Tags returned from Get-DbcCheck" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Agent.Tests.ps1 - Checking Contexts" executed="True" result="Success" success="True" time="0.2207" asserts="0" description="Agent.Tests.ps1 - Checking Contexts">
<results>
<test-case description="Testing Database Mail XPs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Database Mail XPs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0719" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Testing Database Mail XPs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Testing Database Mail XPs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0066" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing SQL Agent is running on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0065" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing DBA Operators exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing DBA Operators exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0065" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing DBA Operators exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing DBA Operators exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing failsafe operator exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing failsafe operator exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0156" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing failsafe operator exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing failsafe operator exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing database mail profile is set on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing database mail profile is set on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing database mail profile is set on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing database mail profile is set on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Checking for failed enabled jobs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Checking for failed enabled jobs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Checking for failed enabled jobs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Checking for failed enabled jobs on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0115" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing job owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing job owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing job owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing job owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Agent Alerts Severity exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Agent Alerts Severity exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Agent Alerts MessageID exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Agent Alerts MessageID exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Agent Alerts Severity exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Agent Alerts Severity exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Agent Alerts MessageID exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Contexts.Testing Agent Alerts MessageID exists on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Agent.Tests.ps1 - Checking Code" executed="True" result="Success" success="True" time="0.533" asserts="0" description="Agent.Tests.ps1 - Checking Code">
<results>
<test-case description="Database Mail XPs Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail XPs Should Use Get-Instance or Get-ComputerName" time="0.0481" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail XPs Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail XPs Should use the ForEach Method" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail XPs Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail XPs Should not use $_" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0478" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SQL Agent Account Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.SQL Agent Account Should Use Get-Instance or Get-ComputerName" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SQL Agent Account Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.SQL Agent Account Should use the ForEach Method" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SQL Agent Account Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.SQL Agent Account Should not use $_" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0338" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DBA Operators Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.DBA Operators Should Use Get-Instance or Get-ComputerName" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DBA Operators Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.DBA Operators Should use the ForEach Method" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DBA Operators Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.DBA Operators Should not use $_" time="0.018" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0348" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failsafe Operator Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failsafe Operator Should Use Get-Instance or Get-ComputerName" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failsafe Operator Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failsafe Operator Should use the ForEach Method" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failsafe Operator Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failsafe Operator Should not use $_" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0335" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail Profile Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail Profile Should Use Get-Instance or Get-ComputerName" time="0.0122" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail Profile Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail Profile Should use the ForEach Method" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Mail Profile Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Database Mail Profile Should not use $_" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0341" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed Jobs Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failed Jobs Should Use Get-Instance or Get-ComputerName" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed Jobs Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failed Jobs Should use the ForEach Method" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Failed Jobs Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Failed Jobs Should not use $_" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0411" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Job Owner Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Valid Job Owner Should Use Get-Instance or Get-ComputerName" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Job Owner Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Valid Job Owner Should use the ForEach Method" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Job Owner Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Valid Job Owner Should not use $_" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.033" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent Alerts Should Use Get-Instance or Get-ComputerName" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent Alerts Should Use Get-Instance or Get-ComputerName" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent Alerts Should use the ForEach Method" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent Alerts Should use the ForEach Method" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent Alerts Should not use $_" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent Alerts Should not use $_" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Agent.Tests.ps1 - Checking Code.Agent.Tests.ps1 should have the right number of Context blocks as the AST doesnt parse how I like and I cant be bothered to fix it right now" time="0.0396" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Database.Tests.ps1 - Checking Describes titles and tags" executed="True" result="Success" success="True" time="1.5341" asserts="0" description="Database.Tests.ps1 - Checking Describes titles and tags">
<results>
<test-case description="Database Collation Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Collation Should Use a double quote after the Describe" time="0.2479" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Collation should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Collation should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DatabaseCollation should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DatabaseCollation should be Singular" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseCollation should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseCollation should be in the unique Tags returned from Get-DbcCheck" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Suspect Page Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Suspect Page Should Use a double quote after the Describe" time="0.0091" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Suspect Page should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Suspect Page should use a plural for tags" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="SuspectPage should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.SuspectPage should be Singular" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag SuspectPage should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag SuspectPage should be in the unique Tags returned from Get-DbcCheck" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Backup Restore Test Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Backup Restore Test Should Use a double quote after the Describe" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Backup Restore Test should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Backup Restore Test should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="TestLastBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.TestLastBackup should be Singular" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Backup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Backup should be Singular" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag TestLastBackup should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag TestLastBackup should be in the unique Tags returned from Get-DbcCheck" time="0.0092" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Backup VerifyOnly Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Backup VerifyOnly Should Use a double quote after the Describe" time="0.01" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Backup VerifyOnly should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Backup VerifyOnly should use a plural for tags" time="0.013" asserts="0" success="True" result="Success" executed="True" />
<test-case description="TestLastBackupVerifyOnly should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.TestLastBackupVerifyOnly should be Singular" time="0.0114" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Backup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Backup should be Singular" time="0.0089" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag TestLastBackupVerifyOnly should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag TestLastBackupVerifyOnly should be in the unique Tags returned from Get-DbcCheck" time="0.0133" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Database Owner Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Valid Database Owner Should Use a double quote after the Describe" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Valid Database Owner should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Valid Database Owner should use a plural for tags" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="ValidDatabaseOwner should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.ValidDatabaseOwner should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag ValidDatabaseOwner should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag ValidDatabaseOwner should be in the unique Tags returned from Get-DbcCheck" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Invalid Database Owner Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Invalid Database Owner Should Use a double quote after the Describe" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Invalid Database Owner should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Invalid Database Owner should use a plural for tags" time="0.0066" asserts="0" success="True" result="Success" executed="True" />
<test-case description="InvalidDatabaseOwner should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.InvalidDatabaseOwner should be Singular" time="0.0067" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag InvalidDatabaseOwner should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag InvalidDatabaseOwner should be in the unique Tags returned from Get-DbcCheck" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Good DBCC CHECKDB Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Good DBCC CHECKDB Should Use a double quote after the Describe" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Good DBCC CHECKDB should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Good DBCC CHECKDB should use a plural for tags" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastGoodCheckDb should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastGoodCheckDb should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LastGoodCheckDb should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LastGoodCheckDb should be in the unique Tags returned from Get-DbcCheck" time="0.0093" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Column Identity Usage Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Column Identity Usage Should Use a double quote after the Describe" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Column Identity Usage should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Column Identity Usage should use a plural for tags" time="0.0101" asserts="0" success="True" result="Success" executed="True" />
<test-case description="IdentityUsage should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.IdentityUsage should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag IdentityUsage should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag IdentityUsage should be in the unique Tags returned from Get-DbcCheck" time="0.0107" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Recovery Model Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Recovery Model Should Use a double quote after the Describe" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Recovery Model should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Recovery Model should use a plural for tags" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="RecoveryModel should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.RecoveryModel should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DISA should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DISA should be Singular" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag RecoveryModel should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag RecoveryModel should be in the unique Tags returned from Get-DbcCheck" time="0.0078" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Duplicate Index Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Duplicate Index Should Use a double quote after the Describe" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Duplicate Index should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Duplicate Index should use a plural for tags" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DuplicateIndex should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DuplicateIndex should be Singular" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DuplicateIndex should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DuplicateIndex should be in the unique Tags returned from Get-DbcCheck" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Unused Index Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Unused Index Should Use a double quote after the Describe" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Unused Index should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Unused Index should use a plural for tags" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="UnusedIndex should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.UnusedIndex should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag UnusedIndex should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag UnusedIndex should be in the unique Tags returned from Get-DbcCheck" time="0.0111" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Disabled Index Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Disabled Index Should Use a double quote after the Describe" time="0.0092" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Disabled Index should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Disabled Index should use a plural for tags" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DisabledIndex should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DisabledIndex should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DisabledIndex should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DisabledIndex should be in the unique Tags returned from Get-DbcCheck" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Growth Event Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Growth Event Should Use a double quote after the Describe" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Growth Event should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Growth Event should use a plural for tags" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DatabaseGrowthEvent should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DatabaseGrowthEvent should be Singular" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseGrowthEvent should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseGrowthEvent should be in the unique Tags returned from Get-DbcCheck" time="0.009" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Page Verify Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Page Verify Should Use a double quote after the Describe" time="0.0091" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Page Verify should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Page Verify should use a plural for tags" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="PageVerify should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.PageVerify should be Singular" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag PageVerify should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag PageVerify should be in the unique Tags returned from Get-DbcCheck" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Close Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Close Should Use a double quote after the Describe" time="0.0088" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Close should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Close should use a plural for tags" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="AutoClose should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.AutoClose should be Singular" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AutoClose should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag AutoClose should be in the unique Tags returned from Get-DbcCheck" time="0.0117" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Shrink Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Shrink Should Use a double quote after the Describe" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Shrink should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Shrink should use a plural for tags" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="AutoShrink should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.AutoShrink should be Singular" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AutoShrink should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag AutoShrink should be in the unique Tags returned from Get-DbcCheck" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Full Backup Times Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Full Backup Times Should Use a double quote after the Describe" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Full Backup Times should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Full Backup Times should use a plural for tags" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastFullBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastFullBackup should be Singular" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastBackup should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Backup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Backup should be Singular" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DISA should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DISA should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LastFullBackup should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LastFullBackup should be in the unique Tags returned from Get-DbcCheck" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Diff Backup Times Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Diff Backup Times Should Use a double quote after the Describe" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Diff Backup Times should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Diff Backup Times should use a plural for tags" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastDiffBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastDiffBackup should be Singular" time="0.0108" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastBackup should be Singular" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Backup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Backup should be Singular" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DISA should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DISA should be Singular" time="0.0067" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LastDiffBackup should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LastDiffBackup should be in the unique Tags returned from Get-DbcCheck" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Log Backup Times Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Log Backup Times Should Use a double quote after the Describe" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Last Log Backup Times should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Last Log Backup Times should use a plural for tags" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastLogBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastLogBackup should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LastBackup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LastBackup should be Singular" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Backup should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Backup should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DISA should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DISA should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LastLogBackup should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LastLogBackup should be in the unique Tags returned from Get-DbcCheck" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Virtual Log Files Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Virtual Log Files Should Use a double quote after the Describe" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Virtual Log Files should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Virtual Log Files should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="VirtualLogFile should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.VirtualLogFile should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag VirtualLogFile should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag VirtualLogFile should be in the unique Tags returned from Get-DbcCheck" time="0.0096" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Log File Count Checks Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Log File Count Checks Should Use a double quote after the Describe" time="0.0122" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Log File Count Checks should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Log File Count Checks should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LogfileCount should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LogfileCount should be Singular" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LogfileCount should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LogfileCount should be in the unique Tags returned from Get-DbcCheck" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Log File Size Checks Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Log File Size Checks Should Use a double quote after the Describe" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Log File Size Checks should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Log File Size Checks should use a plural for tags" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="LogfileSize should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.LogfileSize should be Singular" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag LogfileSize should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag LogfileSize should be in the unique Tags returned from Get-DbcCheck" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Future File Growth Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Future File Growth Should Use a double quote after the Describe" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Future File Growth should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Future File Growth should use a plural for tags" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="FutureFileGrowth should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.FutureFileGrowth should be Singular" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag FutureFileGrowth should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag FutureFileGrowth should be in the unique Tags returned from Get-DbcCheck" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Correctly sized Filegroup members Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Correctly sized Filegroup members Should Use a double quote after the Describe" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Correctly sized Filegroup members should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Correctly sized Filegroup members should use a plural for tags" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="FileGroupBalanced should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.FileGroupBalanced should be Singular" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag FileGroupBalanced should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag FileGroupBalanced should be in the unique Tags returned from Get-DbcCheck" time="0.0112" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Certificate Expiration Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Certificate Expiration Should Use a double quote after the Describe" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Certificate Expiration should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Certificate Expiration should use a plural for tags" time="0.0202" asserts="0" success="True" result="Success" executed="True" />
<test-case description="CertificateExpiration should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.CertificateExpiration should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag CertificateExpiration should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag CertificateExpiration should be in the unique Tags returned from Get-DbcCheck" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Create Statistics Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Create Statistics Should Use a double quote after the Describe" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Create Statistics should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Create Statistics should use a plural for tags" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AutoCreateStatistics should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag AutoCreateStatistics should be in the unique Tags returned from Get-DbcCheck" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Update Statistics Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Update Statistics Should Use a double quote after the Describe" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Update Statistics should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Update Statistics should use a plural for tags" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AutoUpdateStatistics should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag AutoUpdateStatistics should be in the unique Tags returned from Get-DbcCheck" time="0.0086" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Update Statistics Asynchronously Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Update Statistics Asynchronously Should Use a double quote after the Describe" time="0.0096" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Auto Update Statistics Asynchronously should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Auto Update Statistics Asynchronously should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag AutoUpdateStatisticsAsynchronously should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag AutoUpdateStatisticsAsynchronously should be in the unique Tags returned from Get-DbcCheck" time="0.0123" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Datafile Auto Growth Configuration Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Datafile Auto Growth Configuration Should Use a double quote after the Describe" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Datafile Auto Growth Configuration should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Datafile Auto Growth Configuration should use a plural for tags" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DatafileAutoGrowthType should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DatafileAutoGrowthType should be Singular" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatafileAutoGrowthType should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DatafileAutoGrowthType should be in the unique Tags returned from Get-DbcCheck" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Trustworthy Option Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Trustworthy Option Should Use a double quote after the Describe" time="0.0089" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Trustworthy Option should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Trustworthy Option should use a plural for tags" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Trustworthy should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Trustworthy should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="DISA should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.DISA should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag Trustworthy should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag Trustworthy should be in the unique Tags returned from Get-DbcCheck" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Orphaned User Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Orphaned User Should Use a double quote after the Describe" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Orphaned User should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Orphaned User should use a plural for tags" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="OrphanedUser should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.OrphanedUser should be Singular" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag OrphanedUser should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag OrphanedUser should be in the unique Tags returned from Get-DbcCheck" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="PseudoSimple Recovery Model Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.PseudoSimple Recovery Model Should Use a double quote after the Describe" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="PseudoSimple Recovery Model should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.PseudoSimple Recovery Model should use a plural for tags" time="0.0105" asserts="0" success="True" result="Success" executed="True" />
<test-case description="PseudoSimple should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.PseudoSimple should be Singular" time="0.0082" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag PseudoSimple should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag PseudoSimple should be in the unique Tags returned from Get-DbcCheck" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Compatibility Level Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Compatibility Level Should Use a double quote after the Describe" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Compatibility Level should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Compatibility Level should use a plural for tags" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="CompatibilityLevel should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.CompatibilityLevel should be Singular" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag CompatibilityLevel should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag CompatibilityLevel should be in the unique Tags returned from Get-DbcCheck" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Foreign keys and check constraints not trusted Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Foreign keys and check constraints not trusted Should Use a double quote after the Describe" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Foreign keys and check constraints not trusted should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Foreign keys and check constraints not trusted should use a plural for tags" time="0.0065" asserts="0" success="True" result="Success" executed="True" />
<test-case description="FKCKTrusted should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.FKCKTrusted should be Singular" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag FKCKTrusted should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag FKCKTrusted should be in the unique Tags returned from Get-DbcCheck" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database MaxDop Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database MaxDop Should Use a double quote after the Describe" time="0.009" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database MaxDop should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database MaxDop should use a plural for tags" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="MaxDopDatabase should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.MaxDopDatabase should be Singular" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="MaxDop should be Singular" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.MaxDop should be Singular" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag MaxDopDatabase should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag MaxDopDatabase should be in the unique Tags returned from Get-DbcCheck" time="0.0083" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Status Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Status Should Use a double quote after the Describe" time="0.0131" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Status should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Status should use a plural for tags" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseStatus should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseStatus should be in the unique Tags returned from Get-DbcCheck" time="0.0078" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Exists Should Use a double quote after the Describe" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Exists Should Use a double quote after the Describe" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Database Exists should use a plural for tags" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.Database Exists should use a plural for tags" time="0.0079" asserts="0" success="True" result="Success" executed="True" />
<test-case description="The first Tag DatabaseExists should be in the unique Tags returned from Get-DbcCheck" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Describes titles and tags.The first Tag DatabaseExists should be in the unique Tags returned from Get-DbcCheck" time="0.0075" asserts="0" success="True" result="Success" executed="True" />
</results>
</test-suite>
<test-suite type="TestFixture" name="Database.Tests.ps1 - Checking Contexts" executed="True" result="Success" success="True" time="0.6911" asserts="0" description="Database.Tests.ps1 - Checking Contexts">
<results>
<test-case description="Testing database collation on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing database collation on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.123" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing database collation on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing database collation on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing suspect pages on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing suspect pages on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing suspect pages on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing suspect pages on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Backup Restore & Integrity Checks on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Backup Restore & Integrity Checks on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Backup Restore & Integrity Checks on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Backup Restore & Integrity Checks on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0081" asserts="0" success="True" result="Success" executed="True" />
<test-case description="VerifyOnly tests of last backups on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.VerifyOnly tests of last backups on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0076" asserts="0" success="True" result="Success" executed="True" />
<test-case description="VerifyOnly tests of last backups on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.VerifyOnly tests of last backups on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0073" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0077" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Database Owners on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.008" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Last Good DBCC CHECKDB on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Last Good DBCC CHECKDB on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0089" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Last Good DBCC CHECKDB on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Last Good DBCC CHECKDB on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0107" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Column Identity Usage on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Column Identity Usage on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0085" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Column Identity Usage on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Column Identity Usage on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0084" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Recovery Model on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Recovery Model on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0078" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Recovery Model on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Recovery Model on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.011" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing duplicate indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing duplicate indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0071" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing duplicate indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing duplicate indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0074" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Unused indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Unused indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0069" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Unused indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Unused indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0068" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Disabled indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Disabled indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.007" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing Disabled indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing Disabled indexes on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0072" asserts="0" success="True" result="Success" executed="True" />
<test-case description="Testing database growth event on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" name="Checking that each dbachecks Pester test is correctly formatted for Power Bi and Coded correctly.Database.Tests.ps1 - Checking Contexts.Testing database growth event on $psitem Should end with $PSItem (or $clustername) So that the PowerBi will work correctly" time="0.0078" asserts="0" success="True" result="Success" executed="True" />