forked from ricardoamaro/drupalci_testbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathD8TestGroupsClasses.txt
1294 lines (1291 loc) · 84.2 KB
/
D8TestGroupsClasses.txt
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
Using: sudo DRUPALBRANCH="8.x" RUNSCRIPT="/usr/bin/php ./core/scripts/run-tests.sh --list" ./run.sh
Available test groups & classes
-------------------------------
Action
- Uninstall action test (Drupal\action\Tests\ActionUninstallTest)
- Bulk form (Drupal\action\Tests\BulkFormTest)
- Actions configuration (Drupal\action\Tests\ConfigurationTest)
- Action Plugins (Drupal\system\Tests\Action\ActionUnitTest)
Aggregator
- Add feed functionality (Drupal\aggregator\Tests\AddFeedTest)
- Aggregator configuration (Drupal\aggregator\Tests\AggregatorConfigurationTest)
- Update on cron functionality (Drupal\aggregator\Tests\AggregatorCronTest)
- Checks display of aggregator items (Drupal\aggregator\Tests\AggregatorRenderingTest)
- Delete feed item functionality (Drupal\aggregator\Tests\DeleteFeedItemTest)
- Delete feed functionality (Drupal\aggregator\Tests\DeleteFeedTest)
- Feed fetcher plugins (Drupal\aggregator\Tests\FeedFetcherPluginTest)
- Multilingual feeds (Drupal\aggregator\Tests\FeedLanguageTest)
- Feed parser functionality (Drupal\aggregator\Tests\FeedParserTest)
- Feed processor plugins (Drupal\aggregator\Tests\FeedProcessorPluginTest)
- Import feeds from OPML functionality (Drupal\aggregator\Tests\ImportOpmlTest)
- Update feed item functionality (Drupal\aggregator\Tests\UpdateFeedItemTest)
- Update feed functionality (Drupal\aggregator\Tests\UpdateFeedTest)
AJAX
- AJAX commands (Drupal\system\Tests\Ajax\CommandsTest)
- AJAX dialogs commands (Drupal\system\Tests\Ajax\DialogTest)
- Miscellaneous AJAX tests (Drupal\system\Tests\Ajax\ElementValidationTest)
- AJAX command form values (Drupal\system\Tests\Ajax\FormValuesTest)
- AJAX framework (Drupal\system\Tests\Ajax\FrameworkTest)
- AJAX multi form (Drupal\system\Tests\Ajax\MultiFormTest)
Authentication
- BasicAuth authentication (Drupal\basic_auth\Tests\Authentication\BasicAuthTest)
Ban
- IP address banning (Drupal\ban\Tests\IpAddressBlockingTest)
Batch API
- Batch progress page (Drupal\system\Tests\Batch\PageTest)
- Batch processing (Drupal\system\Tests\Batch\ProcessingTest)
Block
- Administration theme (Drupal\block\Tests\BlockAdminThemeTest)
- Block caching (Drupal\block\Tests\BlockCacheTest)
- Blocks not in hidden region (Drupal\block\Tests\BlockHiddenRegionTest)
- Block operations hook (Drupal\block\Tests\BlockHookOperationTest)
- Block HTML (Drupal\block\Tests\BlockHtmlTest)
- Block Plugins Tests (Drupal\block\Tests\BlockInterfaceTest)
- Blocks in invalid regions (Drupal\block\Tests\BlockInvalidRegionTest)
- Multilingual blocks (Drupal\block\Tests\BlockLanguageCacheTest)
- Language block visibility (Drupal\block\Tests\BlockLanguageTest)
- Block preprocess (Drupal\block\Tests\BlockPreprocessUnitTest)
- Block Render Order (Drupal\block\Tests\BlockRenderOrderTest)
- Block storage (Drupal\block\Tests\BlockStorageUnitTest)
- System Branding Block (Drupal\block\Tests\BlockSystemBrandingTest)
- Block template suggestions (Drupal\block\Tests\BlockTemplateSuggestionsUnitTest)
- Block functionality (Drupal\block\Tests\BlockTest)
- Block XSS Title (Drupal\block\Tests\BlockTitleXSSTest)
- Block UI (Drupal\block\Tests\BlockUiTest)
- Block rendering (Drupal\block\Tests\BlockViewBuilderTest)
- New default theme blocks (Drupal\block\Tests\NewDefaultThemeBlocksTest)
- Non default theme admin (Drupal\block\Tests\NonDefaultBlockAdminTest)
Book
- Book functionality (Drupal\book\Tests\BookTest)
- Book commenting (Drupal\comment\Tests\CommentBookTest)
Bootstrap
- Get filename test (Drupal\system\Tests\Bootstrap\GetFilenameUnitTest)
- Miscellaneous bootstrap unit tests (Drupal\system\Tests\Bootstrap\MiscUnitTest)
- Page cache test (Drupal\system\Tests\Bootstrap\PageCacheTest)
- Resettable static variables test (Drupal\system\Tests\Bootstrap\ResettableStaticUnitTest)
Breakpoint
- Breakpoint general API functions (Drupal\breakpoint\Tests\BreakpointAPITest)
- Breakpoint CRUD operations (Drupal\breakpoint\Tests\BreakpointCRUDTest)
- Breakpoint group general API functions (Drupal\breakpoint\Tests\BreakpointGroupAPITest)
- Breakpoint group CRUD operations (Drupal\breakpoint\Tests\BreakpointGroupCRUDTest)
- Breakpoint theme functionality (Drupal\breakpoint\Tests\BreakpointThemeTest)
Cache
- Backend chain (Drupal\system\Tests\Cache\BackendChainUnitTest)
- Cache clear test (Drupal\system\Tests\Cache\ClearTest)
- Database backend tag test (Drupal\system\Tests\Cache\DatabaseBackendTagTest)
- Database backend (Drupal\system\Tests\Cache\DatabaseBackendUnitTest)
- Memory cache backend (Drupal\system\Tests\Cache\MemoryBackendUnitTest)
- Page cache tags integration test (Drupal\system\Tests\Cache\PageCacheTagsIntegrationTest)
CKEditor
- CKEditor administration (Drupal\ckeditor\Tests\CKEditorAdminTest)
- CKEditor loading (Drupal\ckeditor\Tests\CKEditorLoadingTest)
- CKEditor plugin manager (Drupal\ckeditor\Tests\CKEditorPluginManagerTest)
- CKEditor text editor plugin (Drupal\ckeditor\Tests\CKEditorTest)
Color
- Color functionality (Drupal\color\Tests\ColorTest)
Comment
- Comment actions (Drupal\comment\Tests\CommentActionsTest)
- Comment admin (Drupal\comment\Tests\CommentAdminTest)
- Anonymous comments (Drupal\comment\Tests\CommentAnonymousTest)
- Comment blocks (Drupal\comment\Tests\CommentBlockTest)
- Comment entity cache tags (Drupal\comment\Tests\CommentCacheTagsTest)
- Comment Rebuild (Drupal\comment\Tests\CommentContentRebuildTest)
- Comment CSS (Drupal\comment\Tests\CommentCSSTest)
- Comment fields (Drupal\comment\Tests\CommentFieldsTest)
- Comment interface (Drupal\comment\Tests\CommentInterfaceTest)
- Comment language (Drupal\comment\Tests\CommentLanguageTest)
- hook_comment_links_alter() (Drupal\comment\Tests\CommentLinksAlterTest)
- Comment links (Drupal\comment\Tests\CommentLinksTest)
- Comment 'new' indicator (Drupal\comment\Tests\CommentNewIndicatorTest)
- Comment node access (Drupal\comment\Tests\CommentNodeAccessTest)
- Comment deletion on node changes (Drupal\comment\Tests\CommentNodeChangesTest)
- Comment non-node tests (Drupal\comment\Tests\CommentNonNodeTest)
- Comment paging settings (Drupal\comment\Tests\CommentPagerTest)
- Comment preview (Drupal\comment\Tests\CommentPreviewTest)
- Comment RSS (Drupal\comment\Tests\CommentRssTest)
- Comment statistics (Drupal\comment\Tests\CommentStatisticsTest)
- Comment Threading (Drupal\comment\Tests\CommentThreadingTest)
- Comment token replacement (Drupal\comment\Tests\CommentTokenReplaceTest)
- Comment translation UI (Drupal\comment\Tests\CommentTranslationUITest)
- Comment uninstallation (Drupal\comment\Tests\CommentUninstallTest)
- Comment Validation (Drupal\comment\Tests\CommentValidationTest)
Common
- drupal_add_feed() tests (Drupal\system\Tests\Common\AddFeedTest)
- Alter hook functionality (Drupal\system\Tests\Common\AlterTest)
- Cascading stylesheets (Drupal\system\Tests\Common\CascadingStylesheetsTest)
- Format date (Drupal\system\Tests\Common\FormatDateTest)
- HTML identifiers (Drupal\system\Tests\Common\HtmlIdentifierUnitTest)
- JavaScript (Drupal\system\Tests\Common\JavaScriptTest)
- Attachment merging (Drupal\system\Tests\Common\MergeAttachmentsTest)
- No JavaScript for anonymous users in Standard profile (Drupal\system\Tests\Common\NoJavaScriptAnonymousTest)
- Region content (Drupal\system\Tests\Common\RegionContentTest)
- Render element types (Drupal\system\Tests\Common\RenderElementTypesTest)
- drupal_render() (Drupal\system\Tests\Common\RenderTest)
- drupal_render() in a full environment (Drupal\system\Tests\Common\RenderWebTest)
- SimpleTest error collector (Drupal\system\Tests\Common\SimpleTestErrorCollectorTest)
- Size parsing test (Drupal\system\Tests\Common\SizeUnitTest)
- Drupal system listing (Drupal\system\Tests\Common\SystemListingTest)
- URL generation tests (Drupal\system\Tests\Common\UrlTest)
- Data record write functionality (Drupal\system\Tests\Common\WriteRecordTest)
- String filtering tests (Drupal\system\Tests\Common\XssUnitTest)
Condition API
- Language Condition Plugin (Drupal\language\Tests\Condition\LanguageConditionTest)
- Node Condition Plugins (Drupal\node\Tests\Condition\NodeConditionTest)
- Condition Form Tests (Drupal\system\Tests\Condition\ConditionFormTest)
Configuration
- CRUD operations (Drupal\config\Tests\ConfigCRUDTest)
- Configuration dependency tests (Drupal\config\Tests\ConfigDependencyTest)
- Diff functionality (Drupal\config\Tests\ConfigDiffTest)
- Configuration entity list (Drupal\config\Tests\ConfigEntityListTest)
- Configuration entity status (Drupal\config\Tests\ConfigEntityStatusTest)
- Configuration entity status UI (Drupal\config\Tests\ConfigEntityStatusUITest)
- Configuration entity UUID conflict (Drupal\config\Tests\ConfigEntityStorageTest)
- Configuration entities (Drupal\config\Tests\ConfigEntityTest)
- Configuration entity methods (Drupal\config\Tests\ConfigEntityUnitTest)
- Config events (Drupal\config\Tests\ConfigEventsTest)
- Export/import UI (Drupal\config\Tests\ConfigExportImportUITest)
- Export UI (Drupal\config\Tests\ConfigExportUITest)
- File content (Drupal\config\Tests\ConfigFileContentTest)
- Import configuration (Drupal\config\Tests\ConfigImporterTest)
- Import renamed configuration (Drupal\config\Tests\ConfigImportRecreateTest)
- Import UI (Drupal\config\Tests\ConfigImportUITest)
- Import uploaded config (Drupal\config\Tests\ConfigImportUploadTest)
- Installation functionality unit tests (Drupal\config\Tests\ConfigInstallTest)
- Install, disable and uninstall functionality (Drupal\config\Tests\ConfigInstallWebTest)
- Language overrides through the request (Drupal\config\Tests\ConfigLanguageOverrideWebTest)
- Module overrides (Drupal\config\Tests\ConfigModuleOverridesTest)
- Default configuration owner (Drupal\config\Tests\ConfigOtherModuleTest)
- Override priority (Drupal\config\Tests\ConfigOverridesPriorityTest)
- Configuration overrides (Drupal\config\Tests\ConfigOverrideTest)
- Configuration schema (Drupal\config\Tests\ConfigSchemaTest)
- Configuration Single Import/Export UI (Drupal\config\Tests\ConfigSingleImportExportTest)
- Snapshot functionality (Drupal\config\Tests\ConfigSnapshotTest)
- Default configuration (Drupal\config\Tests\DefaultConfigTest)
- DatabaseStorage controller operations (Drupal\config\Tests\Storage\DatabaseStorageTest)
- FileStorage controller operations (Drupal\config\Tests\Storage\FileStorageTest)
- Configuration entity import (Drupal\system\Tests\Entity\ConfigEntityImportTest)
- Config Entity Query (Drupal\system\Tests\Entity\ConfigEntityQueryTest)
Configuration Translation
- Configuration Translation forms (Drupal\config_translation\Tests\ConfigTranslationFormTest)
- Configuration Translation lists (Drupal\config_translation\Tests\ConfigTranslationListUiTest)
- Configuration Translation Overview (Drupal\config_translation\Tests\ConfigTranslationOverviewTest)
- Configuration Translation (Drupal\config_translation\Tests\ConfigTranslationUiTest)
- Configuration Translation view list (Drupal\config_translation\Tests\ConfigTranslationViewListUiTest)
Contact
- Contact form textfields (Drupal\contact\Tests\ContactAuthenticatedUserTest)
- Personal contact form (Drupal\contact\Tests\ContactPersonalTest)
- Site-wide contact form (Drupal\contact\Tests\ContactSitewideTest)
- Message entity tests (Drupal\contact\Tests\MessageEntityTest)
Content Translation UI
- Entity Test translation UI (Drupal\content_translation\Tests\ContentTestTranslationUITest)
- Content translation contextual links (Drupal\content_translation\Tests\ContentTranslationContextualLinksTest)
- Content Translation settings (Drupal\content_translation\Tests\ContentTranslationSettingsTest)
- Image field synchronization (Drupal\content_translation\Tests\ContentTranslationSyncImageTest)
- Field synchronization (Drupal\content_translation\Tests\ContentTranslationSyncUnitTest)
- Entity Test translation workflows (Drupal\content_translation\Tests\ContentTranslationWorkflowsTest)
Contextual
- Contextual links on node lists (Drupal\contextual\Tests\ContextualDynamicContextTest)
- Conversion to and from "contextual id"s (for placeholders) (Drupal\contextual\Tests\ContextualUnitTest)
Custom Block
- Rebuild content (Drupal\custom_block\Tests\CustomBlockBuildContentTest)
- Custom Block entity cache tags (Drupal\custom_block\Tests\CustomBlockCacheTagsTest)
- Custom Block creation (Drupal\custom_block\Tests\CustomBlockCreationTest)
- Custom Block field test (Drupal\custom_block\Tests\CustomBlockFieldTest)
- Custom Block listing (Drupal\custom_block\Tests\CustomBlockListTest)
- Custom Block page view (Drupal\custom_block\Tests\CustomBlockPageViewTest)
- Custom Block revisions (Drupal\custom_block\Tests\CustomBlockRevisionsTest)
- Custom Block save (Drupal\custom_block\Tests\CustomBlockSaveTest)
- Custom Block translation UI (Drupal\custom_block\Tests\CustomBlockTranslationUITest)
- CustomBlock types (Drupal\custom_block\Tests\CustomBlockTypeTest)
- Custom Block edit (Drupal\custom_block\Tests\PageEditTest)
Database
- Query altering tests (Drupal\system\Tests\Database\AlterTest)
- Basic SQL syntax tests (Drupal\system\Tests\Database\BasicSyntaxTest)
- Case sensitivity (Drupal\system\Tests\Database\CaseSensitivityTest)
- Connection tests (Drupal\system\Tests\Database\ConnectionTest)
- Connection unit tests (Drupal\system\Tests\Database\ConnectionUnitTest)
- Database exceptiontests (Drupal\system\Tests\Database\DatabaseExceptionWrapperTest)
- Delete/Truncate tests (Drupal\system\Tests\Database\DeleteTruncateTest)
- Fetch tests (Drupal\system\Tests\Database\FetchTest)
- Insert tests, default fields (Drupal\system\Tests\Database\InsertDefaultsTest)
- Insert tests, LOB fields (Drupal\system\Tests\Database\InsertLobTest)
- Insert tests (Drupal\system\Tests\Database\InsertTest)
- Invalid data (Drupal\system\Tests\Database\InvalidDataTest)
- Query logging (Drupal\system\Tests\Database\LoggingTest)
- Merge tests (Drupal\system\Tests\Database\MergeTest)
- Sequences API (Drupal\system\Tests\Database\NextIdTest)
- Custom query syntax tests (Drupal\system\Tests\Database\QueryTest)
- Range query test (Drupal\system\Tests\Database\RangeQueryTest)
- Regression tests (Drupal\system\Tests\Database\RegressionTest)
- Schema API (Drupal\system\Tests\Database\SchemaTest)
- Select tests, cloning (Drupal\system\Tests\Database\SelectCloneTest)
- Select tests, complex (Drupal\system\Tests\Database\SelectComplexTest)
- Select tests, ordered (Drupal\system\Tests\Database\SelectOrderedTest)
- Pager query tests (Drupal\system\Tests\Database\SelectPagerDefaultTest)
- Select tests, subqueries (Drupal\system\Tests\Database\SelectSubqueryTest)
- Tablesort query tests (Drupal\system\Tests\Database\SelectTableSortDefaultTest)
- Select tests (Drupal\system\Tests\Database\SelectTest)
- Serialize query (Drupal\system\Tests\Database\SerializeQueryTest)
- Query tagging tests (Drupal\system\Tests\Database\TaggingTest)
- Temporary query test (Drupal\system\Tests\Database\TemporaryQueryTest)
- Transaction tests (Drupal\system\Tests\Database\TransactionTest)
- Update tests, Complex (Drupal\system\Tests\Database\UpdateComplexTest)
- Update tests, LOB (Drupal\system\Tests\Database\UpdateLobTest)
- Update tests (Drupal\system\Tests\Database\UpdateTest)
Datetime
- Datetime Field (Drupal\datetime\Tests\DateTimeFieldTest)
- DateTimePlusIntl (Drupal\system\Tests\Datetime\DateTimePlusIntlTest)
- DrupalDateTimeIntl (Drupal\system\Tests\Datetime\DrupalDateTimeIntlTest)
- DrupalDateTime (Drupal\system\Tests\Datetime\DrupalDateTimeTest)
DbLog
- DbLog functionality (Drupal\dblog\Tests\DbLogTest)
DrupalKernel
- Content negotiation (Drupal\system\Tests\DrupalKernel\ContentNegotiationTest)
- DrupalKernel tests (Drupal\system\Tests\DrupalKernel\DrupalKernelTest)
- Service destruction (Drupal\system\Tests\DrupalKernel\ServiceDestructionTest)
Edit
- In-place editing of autocomplete tags (Drupal\edit\Tests\EditAutocompleteTermTest)
- In-place editing loading (Drupal\edit\Tests\EditLoadingTest)
- In-place field editor selection (Drupal\edit\Tests\EditorSelectionTest)
- In-place field editing metadata (Drupal\edit\Tests\MetadataGeneratorTest)
Entity
- Entity display modes UI (Drupal\entity\Tests\EntityDisplayModeTest)
Entity API
- Entity display configuration entities (Drupal\entity\Tests\EntityDisplayTest)
- Entity form display configuration entities (Drupal\entity\Tests\EntityFormDisplayTest)
- Entity access (Drupal\system\Tests\Entity\EntityAccessTest)
- Entity info (Drupal\system\Tests\Entity\EntityApiInfoTest)
- Entity CRUD (Drupal\system\Tests\Entity\EntityApiTest)
- Entity CRUD hooks (Drupal\system\Tests\Entity\EntityCrudHookTest)
- Entity Field Default Value (Drupal\system\Tests\Entity\EntityFieldDefaultValueTest)
- Entity Field API (Drupal\system\Tests\Entity\EntityFieldTest)
- Entity form (Drupal\system\Tests\Entity\EntityFormTest)
- Entity Operations (Drupal\system\Tests\Entity\EntityOperationsTest)
- Entity Query aggregation (Drupal\system\Tests\Entity\EntityQueryAggregateTest)
- Entity Query relationship (Drupal\system\Tests\Entity\EntityQueryRelationshipTest)
- Entity Query (Drupal\system\Tests\Entity\EntityQueryTest)
- Entity revisions (Drupal\system\Tests\Entity\EntityRevisionsTest)
- Entity translation form (Drupal\system\Tests\Entity\EntityTranslationFormTest)
- Entity Translation (Drupal\system\Tests\Entity\EntityTranslationTest)
- Entity UUIDs (Drupal\system\Tests\Entity\EntityUUIDTest)
- Entity Validation API (Drupal\system\Tests\Entity\EntityValidationTest)
- Entity rendering (Drupal\system\Tests\Entity\EntityViewBuilderTest)
- Entity View Controller (Drupal\system\Tests\Entity\EntityViewControllerTest)
- Field access tests (Drupal\system\Tests\Entity\FieldAccessTest)
- Field SQL storage tests (Drupal\system\Tests\Entity\FieldSqlStorageTest)
- Field translation SQL storage tests (Drupal\system\Tests\Entity\FieldTranslationSqlStorageTest)
Entity Reference
- Entity Reference admin UI (Drupal\entity_reference\Tests\EntityReferenceAdminTest)
- Autocomplete (Drupal\entity_reference\Tests\EntityReferenceAutocompleteTest)
- Entity Reference auto-create and autocomplete UI (Drupal\entity_reference\Tests\EntityReferenceAutoCreateTest)
- Entity Reference field default value (Drupal\entity_reference\Tests\EntityReferenceFieldDefaultValueTest)
- Entity Reference field (Drupal\entity_reference\Tests\EntityReferenceFieldTest)
- Entity reference formatters (Drupal\entity_reference\Tests\EntityReferenceFormatterTest)
- Entity reference components (widgets, formatters, etc.) (Drupal\entity_reference\Tests\EntityReferenceIntegrationTest)
- Entity Reference field item (Drupal\entity_reference\Tests\EntityReferenceItemTest)
- Entity Reference handlers (Drupal\entity_reference\Tests\EntityReferenceSelectionAccessTest)
- Entity Reference handlers sort (Drupal\entity_reference\Tests\EntityReferenceSelectionSortTest)
Extension
- InfoParser (Drupal\system\Tests\Extension\InfoParserUnitTest)
Field
- Field help functionality (Drupal\field\Tests\FieldHelpTest)
Field API
- Field bulk delete tests (Drupal\field\Tests\BulkDeleteTest)
- Field CRUD tests (Drupal\field\Tests\CrudTest)
- Field Display API tests (Drupal\field\Tests\DisplayApiTest)
- Field access tests (Drupal\field\Tests\FieldAccessTest)
- Field attach tests (other) (Drupal\field\Tests\FieldAttachOtherTest)
- Field attach tests (storage-related) (Drupal\field\Tests\FieldAttachStorageTest)
- Field config change tests (Drupal\field\Tests\FieldImportChangeTest)
- Field config create tests (Drupal\field\Tests\FieldImportCreateTest)
- Field config delete tests (Drupal\field\Tests\FieldImportDeleteTest)
- Field info tests (Drupal\field\Tests\FieldInfoTest)
- Field instance CRUD tests (Drupal\field\Tests\FieldInstanceCrudTest)
- Field validation (Drupal\field\Tests\FieldValidationTest)
- Field form tests (Drupal\field\Tests\FormTest)
- Nested form (Drupal\field\Tests\NestedFormTest)
- Field translations tests (Drupal\field\Tests\TranslationTest)
- Field translations web tests (Drupal\field\Tests\TranslationWebTest)
- Multilingual fields (Drupal\node\Tests\NodeFieldMultilingualTestCase)
Field types
- Date field item (Drupal\datetime\Tests\DateTimeItemTest)
- E-mail field (Drupal\field\Tests\Email\EmailFieldTest)
- E-mail field item (Drupal\field\Tests\Email\EmailItemTest)
- Numeric fields (Drupal\field\Tests\Number\NumberFieldTest)
- Number field items (Drupal\field\Tests\Number\NumberItemTest)
- Test field module re-enable (Drupal\field\Tests\reEnableModuleFieldTest)
- Shape field item (Drupal\field\Tests\ShapeItemTest)
- Test field item (Drupal\field\Tests\TestItemTest)
- Link field (Drupal\link\Tests\LinkFieldTest)
- Link field UI (Drupal\link\Tests\LinkFieldUITest)
- Link field item (Drupal\link\Tests\LinkItemTest)
- Options field dynamic values (Drupal\options\Tests\OptionsDynamicValuesValidationTest)
- Options field (Drupal\options\Tests\OptionsFieldTest)
- Options field UI (Drupal\options\Tests\OptionsFieldUITest)
- Options field formatters (Drupal\options\Tests\OptionsFormattersTest)
- Options select dynamic values (Drupal\options\Tests\OptionsSelectDynamicValuesTest)
- Options widgets (Drupal\options\Tests\OptionsWidgetsTest)
- Telephone field (Drupal\telephone\Tests\TelephoneFieldTest)
- Telephone field item (Drupal\telephone\Tests\TelephoneItemTest)
- Text field text_plain formatter (Drupal\text\Tests\Formatter\TextPlainUnitTest)
- Text field (Drupal\text\Tests\TextFieldTest)
- Text summary (Drupal\text\Tests\TextSummaryTest)
- Text summary field item (Drupal\text\Tests\TextWithSummaryItemTest)
Field UI
- Field UI routes (Drupal\field_ui\Tests\FieldUIRouteTest)
- Manage display (Drupal\field_ui\Tests\ManageDisplayTest)
- Manage fields (Drupal\field_ui\Tests\ManageFieldsTest)
File
- File field display tests (Drupal\file\Tests\FileFieldDisplayTest)
- File field file path tests (Drupal\file\Tests\FileFieldPathTest)
- File field revision test (Drupal\file\Tests\FileFieldRevisionTest)
- File field RSS content (Drupal\file\Tests\FileFieldRSSContentTest)
- File field validation tests (Drupal\file\Tests\FileFieldValidateTest)
- File field widget test (Drupal\file\Tests\FileFieldWidgetTest)
- File field item API (Drupal\file\Tests\FileItemTest)
- File listing (Drupal\file\Tests\FileListingTest)
- Managed file element test (Drupal\file\Tests\FileManagedFileElementTest)
- Private file test (Drupal\file\Tests\FilePrivateTest)
- File token replacement (Drupal\file\Tests\FileTokenReplaceTest)
File API
- File system configuration test (Drupal\system\Tests\File\ConfigTest)
- File paths and directories (Drupal\system\Tests\File\DirectoryTest)
- .htaccess file saving (Drupal\system\Tests\File\HtaccessUnitTest)
- File mimetypes (Drupal\system\Tests\File\MimeTypeTest)
- File naming (Drupal\system\Tests\File\NameMungingTest)
- Read only stream wrapper (Drupal\system\Tests\File\ReadOnlyStreamWrapperTest)
- File scan directory (Drupal\system\Tests\File\ScanDirectoryTest)
- Stream wrappers (Drupal\system\Tests\File\StreamWrapperTest)
- Unmanaged file copying (Drupal\system\Tests\File\UnmanagedCopyTest)
- Unmanaged recursive file delete (Drupal\system\Tests\File\UnmanagedDeleteRecursiveTest)
- Unmanaged file delete (Drupal\system\Tests\File\UnmanagedDeleteTest)
- Unmanaged file moving (Drupal\system\Tests\File\UnmanagedMoveTest)
- Unmanaged file save data (Drupal\system\Tests\File\UnmanagedSaveDataTest)
- File URL rewriting (Drupal\system\Tests\File\UrlRewritingTest)
File API (remote)
- File paths and directories (Drupal\system\Tests\File\RemoteFileDirectoryTest)
- File scan directory (Drupal\system\Tests\File\RemoteFileScanDirectoryTest)
- Unmanaged file copying (Drupal\system\Tests\File\RemoteFileUnmanagedCopyTest)
- Unmanaged recursive file delete (Drupal\system\Tests\File\RemoteFileUnmanagedDeleteRecursiveTest)
- Unmanaged file delete (Drupal\system\Tests\File\RemoteFileUnmanagedDeleteTest)
- Unmanaged file moving (Drupal\system\Tests\File\RemoteFileUnmanagedMoveTest)
- Unmanaged file save data (Drupal\system\Tests\File\RemoteFileUnmanagedSaveDataTest)
File Managed API
- File copying (Drupal\file\Tests\CopyTest)
- File delete (Drupal\file\Tests\DeleteTest)
- File download (Drupal\file\Tests\DownloadTest)
- File loading (Drupal\file\Tests\LoadTest)
- File moving (Drupal\file\Tests\MoveTest)
- File save data (Drupal\file\Tests\SaveDataTest)
- File saving (Drupal\file\Tests\SaveTest)
- File uploading (Drupal\file\Tests\SaveUploadTest)
- File space used tests (Drupal\file\Tests\SpaceUsedTest)
- File usage (Drupal\file\Tests\UsageTest)
- File validate (Drupal\file\Tests\ValidateTest)
- File validator tests (Drupal\file\Tests\ValidatorTest)
File Managed API (remote)
- File uploading (Drupal\file\Tests\RemoteFileSaveUploadTest)
Filter
- Filter administration functionality (Drupal\filter\Tests\FilterAdminTest)
- API (Drupal\filter\Tests\FilterAPITest)
- Filter CRUD operations (Drupal\filter\Tests\FilterCrudTest)
- Default configuration (Drupal\filter\Tests\FilterDefaultConfigTest)
- Default text format functionality (Drupal\filter\Tests\FilterDefaultFormatTest)
- Filter format access (Drupal\filter\Tests\FilterFormatAccessTest)
- Filter format hooks (Drupal\filter\Tests\FilterHooksTest)
- Local image input filter (Drupal\filter\Tests\FilterHtmlImageSecureTest)
- Unassigned text format functionality (Drupal\filter\Tests\FilterNoFormatTest)
- Security (Drupal\filter\Tests\FilterSecurityTest)
- Filter settings (Drupal\filter\Tests\FilterSettingsTest)
- Filter module filters (Drupal\filter\Tests\FilterUnitTest)
Form API
- Form alter hooks (Drupal\system\Tests\Form\AlterTest)
- Rebuild arbitrary forms (Drupal\system\Tests\Form\ArbitraryRebuildTest)
- Form API checkbox (Drupal\system\Tests\Form\CheckboxTest)
- Confirmation forms (Drupal\system\Tests\Form\ConfirmFormTest)
- Form element and label output test (Drupal\system\Tests\Form\ElementsLabelsTest)
- Tableselect form element type test (Drupal\system\Tests\Form\ElementsTableSelectTest)
- Vertical tabs form element type test (Drupal\system\Tests\Form\ElementsVerticalTabsTest)
- Element processing (Drupal\system\Tests\Form\ElementTest)
- Form API email (Drupal\system\Tests\Form\EmailTest)
- Form cache tests (Drupal\system\Tests\Form\FormCacheTest)
- Form object tests (Drupal\system\Tests\Form\FormObjectTest)
- Form element validation (Drupal\system\Tests\Form\FormTest)
- Language select form element (Drupal\system\Tests\Form\LanguageSelectElementTest)
- Programmatic form submissions (Drupal\system\Tests\Form\ProgrammaticTest)
- Form rebuilding (Drupal\system\Tests\Form\RebuildTest)
- Form redirecting (Drupal\system\Tests\Form\RedirectTest)
- Form state values clearance (advanced) (Drupal\system\Tests\Form\StateValuesCleanAdvancedTest)
- Form state values clearance (Drupal\system\Tests\Form\StateValuesCleanTest)
- Multistep form using form storage (Drupal\system\Tests\Form\StorageTest)
- SystemConfigmForm tests (Drupal\system\Tests\Form\SystemConfigFormTest)
- Form triggering element programmed determination (Drupal\system\Tests\Form\TriggeringElementProgrammedUnitTest)
- Form triggering element determination (Drupal\system\Tests\Form\TriggeringElementTest)
- Form API URL (Drupal\system\Tests\Form\UrlTest)
- Form validation handlers (Drupal\system\Tests\Form\ValidationTest)
Forum
- Forum blocks (Drupal\forum\Tests\ForumBlockTest)
- Forum index (Drupal\forum\Tests\ForumIndexTest)
- Forum private node access test (Drupal\forum\Tests\ForumNodeAccessTest)
- Forum functionality (Drupal\forum\Tests\ForumTest)
- Forum uninstallation (Drupal\forum\Tests\ForumUninstallTest)
HAL
- Denormalize Test (Drupal\hal\Tests\DenormalizeTest)
- Entity normalizer Test (Drupal\hal\Tests\EntityTest)
- File denormalize Test (Drupal\hal\Tests\FileDenormalizeTest)
- Normalize Test (Drupal\hal\Tests\NormalizeTest)
Help
- Help functionality (Drupal\help\Tests\HelpTest)
- No help (Drupal\help\Tests\NoHelpTest)
History
- History endpoints (Drupal\history\Tests\HistoryTest)
Image
- Image moving (Drupal\image\Tests\FileMoveTest)
- Image styles and effects UI configuration (Drupal\image\Tests\ImageAdminStylesTest)
- Image dimensions (Drupal\image\Tests\ImageDimensionsTest)
- Image effects (Drupal\image\Tests\ImageEffectsTest)
- Image field default images tests (Drupal\image\Tests\ImageFieldDefaultImagesTest)
- Image field display tests (Drupal\image\Tests\ImageFieldDisplayTest)
- Image field validation tests (Drupal\image\Tests\ImageFieldValidateTest)
- Image field item API (Drupal\image\Tests\ImageItemTest)
- Image style flushing (Drupal\image\Tests\ImageStyleFlushTest)
- Image styles path and URL functions (Drupal\image\Tests\ImageStylesPathAndUrlTest)
- Image theme functions (Drupal\image\Tests\ImageThemeFunctionTest)
- Image GD manipulation tests (Drupal\system\Tests\Image\ToolkitGdTest)
- Image toolkit setup form tests (Drupal\system\Tests\Image\ToolkitSetupFormTest)
- Image toolkit tests (Drupal\system\Tests\Image\ToolkitTest)
Installation profile
- Installation profile module tests helper (Drupal\drupal_system_listing_compatible_test\Tests\SystemListingCompatibleTest)
Installer
- Distribution installation profile test (Drupal\system\Tests\Installer\DistributionProfileTest)
- Installer Empty Settings Test (Drupal\system\Tests\Installer\InstallerEmptySettingsTest)
- Installer language tests (Drupal\system\Tests\Installer\InstallerLanguageTest)
- Installer test (Drupal\system\Tests\Installer\InstallerTest)
- Installer translation test (Drupal\system\Tests\Installer\InstallerTranslationTest)
- Installer translation version fallback (Drupal\system\Tests\Installer\InstallerTranslationVersionUnitTest)
- Site name (non-interactive) (Drupal\system\Tests\Installer\SiteNameTest)
Key-value store
- Expirable database storage (Drupal\system\Tests\KeyValueStore\DatabaseStorageExpirableTest)
- Database storage (Drupal\system\Tests\KeyValueStore\DatabaseStorageTest)
- Garbage collection (Drupal\system\Tests\KeyValueStore\GarbageCollectionTest)
- Memory storage (Drupal\system\Tests\KeyValueStore\MemoryStorageTest)
Language
- Browser language detection (Drupal\language\Tests\LanguageBrowserDetectionUnitTest)
- Language configuration form element tests (Drupal\language\Tests\LanguageConfigurationElementTest)
- Language negotiation autoconfiguration (Drupal\language\Tests\LanguageConfigurationTest)
- Custom Language configuration (Drupal\language\Tests\LanguageCustomLanguageConfigurationTest)
- Language dependency injection (Drupal\language\Tests\LanguageDependencyInjectionTest)
- Language fallback (Drupal\language\Tests\LanguageFallbackTest)
- Language list during module install (Drupal\language\Tests\LanguageListModuleInstallTest)
- Language list configuration (Drupal\language\Tests\LanguageListTest)
- Language negotiation info (Drupal\language\Tests\LanguageNegotiationInfoTest)
- Paths on non-English monolingual sites (Drupal\language\Tests\LanguagePathMonolingualTest)
- Language switching (Drupal\language\Tests\LanguageSwitchingTest)
- UI language negotiation (Drupal\language\Tests\LanguageUILanguageNegotiationTest)
- URL rewriting (Drupal\language\Tests\LanguageUrlRewritingTest)
Locale
- Locale config manager (Drupal\locale\Tests\LocaleConfigManagerTest)
- Configuration translation (Drupal\locale\Tests\LocaleConfigTranslationTest)
- Content language settings (Drupal\locale\Tests\LocaleContentTest)
- Translation export (Drupal\locale\Tests\LocaleExportTest)
- Translation import (Drupal\locale\Tests\LocaleImportFunctionalTest)
- Javascript translation (Drupal\locale\Tests\LocaleJavascriptTranslation)
- Javascript library localization (Drupal\locale\Tests\LocaleLibraryInfoAlterTest)
- Path language settings (Drupal\locale\Tests\LocalePathTest)
- Plural handling (Drupal\locale\Tests\LocalePluralFormatTest)
- String storage and objects (Drupal\locale\Tests\LocaleStringTest)
- String translate, search and validate (Drupal\locale\Tests\LocaleTranslationUiTest)
- Update translations using cron (Drupal\locale\Tests\LocaleUpdateCronTest)
- Update translations user interface (Drupal\locale\Tests\LocaleUpdateInterfaceTest)
- Update translations (Drupal\locale\Tests\LocaleUpdateTest)
Lock
- Locking framework tests (Drupal\system\Tests\Lock\LockFunctionalTest)
- Locking framework unit tests (Drupal\system\Tests\Lock\LockUnitTest)
Mail
- HTML to text conversion (Drupal\system\Tests\Mail\HtmlToTextTest)
- Mail system (Drupal\system\Tests\Mail\MailTest)
- Mail wrapping (Drupal\system\Tests\Mail\WrapMailUnitTest)
Menu
- Menu & Menu link entities cache tags (Drupal\menu\Tests\MenuCacheTagsTest)
- Menu language (Drupal\menu\Tests\MenuLanguageTest)
- Menu settings for nodes (Drupal\menu\Tests\MenuNodeTest)
- Menu link creation/deletion (Drupal\menu\Tests\MenuTest)
- Uninstall menu test (Drupal\menu\Tests\MenuUninstallTest)
- Breadcrumbs (Drupal\system\Tests\Menu\BreadcrumbTest)
- Menu links (Drupal\system\Tests\Menu\LinksTest)
- Local actions (Drupal\system\Tests\Menu\LocalActionTest)
- Local tasks (Drupal\system\Tests\Menu\LocalTasksTest)
- Menu router rebuild (Drupal\system\Tests\Menu\MenuRouterRebuildTest)
- Menu router (Drupal\system\Tests\Menu\MenuRouterTest)
- menu_translate (Drupal\system\Tests\Menu\MenuTranslateTest)
Migrate Drupal
- Migrate variables to action.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateActionConfigsTest)
- Migrate variables to aggregator.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateAggregatorConfigsTest)
- Migrate variables to book.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateBookConfigsTest)
- Migrate variables to contact.settings (Drupal\migrate_drupal\Tests\d6\MigrateContactConfigsTest)
- Migrate variables to dblog.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateDblogConfigsTest)
- Migrate variables to field.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateFieldConfigsTest)
- Migrate variables to file.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateFileConfigsTest)
- Migrate variables to forum.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateForumConfigsTest)
- Migrate variables to locale.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateLocaleConfigsTest)
- Migrate variables to menu.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateMenuConfigsTest)
- Migrate variables to node.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateNodeConfigsTest)
- Migrate variables to search.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateSearchConfigsTest)
- Migrate variables to simpletest.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateSimpletestConfigsTest)
- Migrate variables to statistics.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateStatisticsConfigsTest)
- Migrate variables to syslog.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateSyslogConfigsTest)
- Migrate variables to taxonomy.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateTaxonomyConfigsTest)
- Migrate variables to text.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateTextConfigsTest)
- Migrate variables to update.settings.yml (Drupal\migrate_drupal\Tests\d6\MigrateUpdateConfigsTest)
- Migrate variables to user.*.yml (Drupal\migrate_drupal\Tests\d6\MigrateUserConfigsTest)
- Migrate user roles to user.role.*.yml (Drupal\migrate_drupal\Tests\d6\MigrateUserRoleTest)
Minimal
- Minimal installation profile (Drupal\minimal\Tests\MinimalTest)
Module
- Module class loader (Drupal\system\Tests\Module\ClassLoaderTest)
- Module dependencies (Drupal\system\Tests\Module\DependencyTest)
- Requirements hook failure (Drupal\system\Tests\Module\HookRequirementsTest)
- Module installation (Drupal\system\Tests\Module\InstallTest)
- Install/uninstall modules (Drupal\system\Tests\Module\InstallUninstallTest)
- Module API (Drupal\system\Tests\Module\ModuleApiTest)
- Required modules (Drupal\system\Tests\Module\RequiredTest)
- Module uninstallation (Drupal\system\Tests\Module\UninstallTest)
- Module versions (Drupal\system\Tests\Module\VersionTest)
Node
- Node config change tests (Drupal\node\Tests\Config\NodeImportChangeTest)
- Node config create tests (Drupal\node\Tests\Config\NodeImportCreateTest)
- Multistep node form basic options (Drupal\node\Tests\MultiStepNodeFormBasicOptionsTest)
- Node access on any table (Drupal\node\Tests\NodeAccessBaseTableTest)
- Node access and fields (Drupal\node\Tests\NodeAccessFieldTest)
- Node access language-aware combination (Drupal\node\Tests\NodeAccessLanguageAwareCombinationTest)
- Node access language-aware (Drupal\node\Tests\NodeAccessLanguageAwareTest)
- Node access language (Drupal\node\Tests\NodeAccessLanguageTest)
- Node access pagination (Drupal\node\Tests\NodeAccessPagerTest)
- Node access rebuild (Drupal\node\Tests\NodeAccessRebuildTest)
- Node access records (Drupal\node\Tests\NodeAccessRecordsTest)
- Node access (Drupal\node\Tests\NodeAccessTest)
- Node administration (Drupal\node\Tests\NodeAdminTest)
- Node blocks (Drupal\node\Tests\NodeBlockFunctionalTest)
- Rebuild content (Drupal\node\Tests\NodeBuildContentTest)
- Node entity cache tags (Drupal\node\Tests\NodeCacheTagsTest)
- Node creation (Drupal\node\Tests\NodeCreationTest)
- Node entity view mode (Drupal\node\Tests\NodeEntityViewModeAlterTest)
- Node form buttons (Drupal\node\Tests\NodeFormButtonsTest)
- Node Last Changed (Drupal\node\Tests\NodeLastChangedTest)
- Load multiple nodes (Drupal\node\Tests\NodeLoadMultipleTest)
- Node post information display (Drupal\node\Tests\NodePostSettingsTest)
- Node query alter (Drupal\node\Tests\NodeQueryAlterTest)
- Node revision permissions (Drupal\node\Tests\NodeRevisionPermissionsTest)
- Node revisions all (Drupal\node\Tests\NodeRevisionsAllTestCase)
- Node revisions by type (Drupal\node\Tests\NodeRevisionsTest)
- Node revisions UI test (Drupal\node\Tests\NodeRevisionsUiTest)
- Node RSS Content (Drupal\node\Tests\NodeRSSContentTest)
- Node save (Drupal\node\Tests\NodeSaveTest)
- Syndicate block (Drupal\node\Tests\NodeSyndicateBlockTest)
- Node title (Drupal\node\Tests\NodeTitleTest)
- Node title XSS filtering (Drupal\node\Tests\NodeTitleXSSTest)
- Node token replacement (Drupal\node\Tests\NodeTokenReplaceTest)
- Node translation UI (Drupal\node\Tests\NodeTranslationUITest)
- Node type initial language (Drupal\node\Tests\NodeTypeInitialLanguageTest)
- Node type persist (Drupal\node\Tests\NodeTypePersistenceTest)
- Node types (Drupal\node\Tests\NodeTypeTest)
- Node Validation (Drupal\node\Tests\NodeValidationTest)
- Node view language field (Drupal\node\Tests\NodeViewLanguageTest)
- Node view page (Drupal\node\Tests\NodeViewTest)
- Node edit (Drupal\node\Tests\PageEditTest)
- Node preview (Drupal\node\Tests\PagePreviewTest)
- Node edit permissions (Drupal\node\Tests\PageViewTest)
- Summary length (Drupal\node\Tests\SummaryLengthTest)
Pager
- Pager functionality (Drupal\system\Tests\Pager\PagerTest)
ParamConverter
- Upcasting tests (Drupal\system\Tests\ParamConverter\UpcastingTest)
Path
- Path alias functionality (Drupal\path\Tests\PathAliasTest)
- Path aliases with translated nodes (Drupal\path\Tests\PathLanguageTest)
- Path aliases with languages (Drupal\path\Tests\PathLanguageUiTest)
- Taxonomy term URL aliases (Drupal\path\Tests\PathTaxonomyTermTest)
Path API
- Path Alias Unit Tests (Drupal\system\Tests\Path\AliasTest)
- Drupal match path (Drupal\system\Tests\Path\MatchPathTest)
- URL altering (Drupal\system\Tests\Path\UrlAlterFunctionalTest)
Plugin API
- AlterDecorator (Drupal\system\Tests\Plugin\AlterDecoratorTest)
- CacheDecoratorLanguage (Drupal\system\Tests\Plugin\CacheDecoratorLanguageTest)
- CacheDecorator (Drupal\system\Tests\Plugin\CacheDecoratorTest)
- Contextual Plugins (Drupal\system\Tests\Plugin\ContextPluginTest)
- Derivative Discovery (Drupal\system\Tests\Plugin\DerivativeTest)
- Annotated class discovery (Drupal\system\Tests\Plugin\Discovery\AnnotatedClassDiscoveryTest)
- Custom annotation class discovery (Drupal\system\Tests\Plugin\Discovery\CustomAnnotationClassDiscoveryTest)
- Custom directory annotation class discovery (Drupal\system\Tests\Plugin\Discovery\CustomDirectoryAnnotatedClassDiscoveryTest)
- Static discovery (Drupal\system\Tests\Plugin\Discovery\StaticDiscoveryTest)
- Factory (Drupal\system\Tests\Plugin\FactoryTest)
- Inspection (Drupal\system\Tests\Plugin\InspectionTest)
Queue
- Queue functionality (Drupal\system\Tests\Queue\QueueTest)
- Cron Queue functionality (Drupal\system\Tests\System\CronQueueTest)
RDF
- RDFa markup for comments (Drupal\rdf\Tests\CommentAttributesTest)
- RDF mapping CRUD functions (Drupal\rdf\Tests\CrudTest)
- Field formatter: datetime (Drupal\rdf\Tests\Field\DateTimeFieldRdfaTest)
- Field formatter: email (Drupal\rdf\Tests\Field\EmailFieldRdfaTest)
- Field formatter: datatype callback (Drupal\rdf\Tests\Field\FieldRdfaDatatypeCallbackTest)
- Field formatter: taxonomy term reference (Drupal\rdf\Tests\Field\TaxonomyTermReferenceRdfaTest)
- Field formatter: text (Drupal\rdf\Tests\Field\TextFieldRdfaTest)
- RDFa markup for files (Drupal\rdf\Tests\FileFieldAttributesTest)
- RDF namespaces serialization test (Drupal\rdf\Tests\GetNamespacesTest)
- RDF namespaces (Drupal\rdf\Tests\GetRdfNamespacesTest)
- RDFa markup for imagefield (Drupal\rdf\Tests\ImageFieldAttributesTest)
- RDFa markup for nodes (Drupal\rdf\Tests\NodeAttributesTest)
- RDFa attributes (Drupal\rdf\Tests\RdfaAttributesTest)
- Standard profile RDF (Drupal\rdf\Tests\StandardProfileTest)
- RDFa markup for taxonomy terms (Drupal\rdf\Tests\TaxonomyAttributesTest)
- RDFa markup for taxonomy term fields (Drupal\rdf\Tests\TaxonomyTermFieldAttributesTest)
- RDFa markup for tracker page (Drupal\rdf\Tests\TrackerAttributesTest)
- RDFa markup for users (Drupal\rdf\Tests\UserAttributesTest)
Responsive Image
- Responsive Image administration functionality (Drupal\responsive_image\Tests\ResponsiveImageAdminUITest)
- Responsive Image field display tests (Drupal\responsive_image\Tests\ResponsiveImageFieldDisplayTest)
REST
- Resource authentication (Drupal\rest\Tests\AuthTest)
- Create resource (Drupal\rest\Tests\CreateTest)
- CSRF access (Drupal\rest\Tests\CsrfTest)
- DB Log resource (Drupal\rest\Tests\DBLogTest)
- Delete resource (Drupal\rest\Tests\DeleteTest)
- Node resource (Drupal\rest\Tests\NodeTest)
- Read resource (Drupal\rest\Tests\ReadTest)
- Resource structure (Drupal\rest\Tests\ResourceTest)
- Update resource (Drupal\rest\Tests\UpdateTest)
Routing
- Dumper tests (Drupal\system\Tests\Routing\MatcherDumperTest)
- Route Provider tests (Drupal\system\Tests\Routing\RouteProviderTest)
- Router Permission tests (Drupal\system\Tests\Routing\RouterPermissionTest)
- Integrated Router tests (Drupal\system\Tests\Routing\RouterTest)
Search
- Advanced search form (Drupal\search\Tests\SearchAdvancedSearchFormTest)
- Block availability (Drupal\search\Tests\SearchBlockTest)
- Comment count toggle (Drupal\search\Tests\SearchCommentCountToggleTest)
- Comment Search tests (Drupal\search\Tests\SearchCommentTest)
- Config settings form (Drupal\search\Tests\SearchConfigSettingsFormTest)
- Embedded forms (Drupal\search\Tests\SearchEmbedFormTest)
- Search engine phrase queries (Drupal\search\Tests\SearchExactTest)
- Search excerpt extraction (Drupal\search\Tests\SearchExcerptTest)
- Keywords and conditions (Drupal\search\Tests\SearchKeywordsConditionsTest)
- Search language selection (Drupal\search\Tests\SearchLanguageTest)
- Search engine queries (Drupal\search\Tests\SearchMatchTest)
- Multilingual entities (Drupal\search\Tests\SearchMultilingualEntityTest)
- Search with punctuation (Drupal\search\Tests\SearchNodePunctuationTest)
- Search index synchronization on node updating / removal (Drupal\search\Tests\SearchNodeUpdateAndDeletionTest)
- Search number matching (Drupal\search\Tests\SearchNumberMatchingTest)
- Search numbers (Drupal\search\Tests\SearchNumbersTest)
- Search page override (Drupal\search\Tests\SearchPageOverrideTest)
- Search page text (Drupal\search\Tests\SearchPageTextTest)
- Search preprocess langcode (Drupal\search\Tests\SearchPreprocessLangcodeTest)
- Search engine ranking (Drupal\search\Tests\SearchRankingTest)
- Search with numeric locale set (Drupal\search\Tests\SearchSetLocaleTest)
- Search simplify (Drupal\search\Tests\SearchSimplifyTest)
- CJK tokenizer (Drupal\search\Tests\SearchTokenizerTest)
Serialization
- Entity resolver tests (Drupal\serialization\Tests\EntityResolverTest)
- Entity serialization tests (Drupal\serialization\Tests\EntitySerializationTest)
- Serialization tests (Drupal\serialization\Tests\SerializationTest)
Service Provider
- Service Provider Registration (Drupal\system\Tests\ServiceProvider\ServiceProviderTest)
Session
- Session HTTPS handling (Drupal\system\Tests\Session\SessionHttpsTest)
- Session tests (Drupal\system\Tests\Session\SessionTest)
Shortcut
- Shortcut link functionality (Drupal\shortcut\Tests\ShortcutLinksTest)
- Shortcut set functionality (Drupal\shortcut\Tests\ShortcutSetsTest)
SimpleTest
- Broken SimpleTest method (Drupal\simpletest\Tests\BrokenSetUpTest)
- SimpleTest browser (Drupal\simpletest\Tests\BrowserTest)
- DrupalUnitTestBase (Drupal\simpletest\Tests\DrupalUnitTestBaseTest)
- Testing SimpleTest setUp (Drupal\simpletest\Tests\FolderTest)
- Installation profile module tests (Drupal\simpletest\Tests\InstallationProfileModuleTestsTest)
- SimpleTest e-mail capturing (Drupal\simpletest\Tests\MailCaptureTest)
- Broken requirements test (Drupal\simpletest\Tests\MissingCheckedRequirementsTest)
- Other Installation profiles (Drupal\simpletest\Tests\OtherInstallationProfileTestsTest)
- SimpleTest functionality (Drupal\simpletest\Tests\SimpleTestTest)
- User helper methods (Drupal\simpletest\Tests\UserHelpersTest)
Standard
- Standard installation profile (Drupal\standard\Tests\StandardTest)
Statistics
- Test statistics admin. (Drupal\statistics\Tests\StatisticsAdminTest)
- Statistics logging tests (Drupal\statistics\Tests\StatisticsLoggingTest)
- Statistics reports tests (Drupal\statistics\Tests\StatisticsReportsTest)
- Statistics token replacement (Drupal\statistics\Tests\StatisticsTokenReplaceTest)
Syslog
- Syslog functionality (Drupal\syslog\Tests\SyslogTest)
System
- Tablesort (Drupal\system\Tests\Common\TableSortExtenderUnitTest)
- FileTransfer unit tests (Drupal\system\Tests\FileTransfer\FileTransferTest)
- 403 functionality (Drupal\system\Tests\System\AccessDeniedTest)
- Fingerprinting meta tag (Drupal\system\Tests\System\AdminMetaTagTest)
- Administrative pages (Drupal\system\Tests\System\AdminTest)
- Cron run (Drupal\system\Tests\System\CronRunTest)
- Locked date formats (Drupal\system\Tests\System\DateFormatsLockedTest)
- Date format ids (Drupal\system\Tests\System\DateFormatsMachineNameTest)
- Date and time (Drupal\system\Tests\System\DateTimeTest)
- Default mobile meta tags (Drupal\system\Tests\System\DefaultMobileMetaTagsTest)
- Error handlers (Drupal\system\Tests\System\ErrorHandlerTest)
- Flood control mechanism (Drupal\system\Tests\System\FloodTest)
- Front page (Drupal\system\Tests\System\FrontPageTest)
- Slave database ignoring event listener (Drupal\system\Tests\System\IgnoreSlaveSubscriberTest)
- Index.php handling (Drupal\system\Tests\System\IndexPhpTest)
- System info alter (Drupal\system\Tests\System\InfoAlterTest)
- Main content rendering fallback (Drupal\system\Tests\System\MainContentFallbackTest)
- 404 functionality (Drupal\system\Tests\System\PageNotFoundTest)
- Page titles (Drupal\system\Tests\System\PageTitleTest)
- Password hashing (Drupal\system\Tests\System\PasswordHashingTest)
- HTTP file retrieval (Drupal\system\Tests\System\RetrieveFileTest)
- Shell scripts (Drupal\system\Tests\System\ScriptTest)
- drupal_rewrite_settings() (Drupal\system\Tests\System\SettingsRewriteTest)
- Shutdown functions (Drupal\system\Tests\System\ShutdownFunctionsTest)
- Site maintenance mode functionality (Drupal\system\Tests\System\SiteMaintenanceTest)
- Status page (Drupal\system\Tests\System\StatusTest)
- Authorize API (Drupal\system\Tests\System\SystemAuthorizeTest)
- Theme interface functionality (Drupal\system\Tests\System\ThemeTest)
- Token replacement unit test (Drupal\system\Tests\System\TokenReplaceUnitTest)
- Token scanning (Drupal\system\Tests\System\TokenScanTest)
Taxonomy
- Taxonomy entity query (Drupal\taxonomy\Tests\EfqTest)
- Test for legacy node bug. (Drupal\taxonomy\Tests\LegacyTest)
- Taxonomy term multiple loading (Drupal\taxonomy\Tests\LoadMultipleTest)
- Taxonomy RSS Content. (Drupal\taxonomy\Tests\RssTest)
- Taxonomy Image Test (Drupal\taxonomy\Tests\TaxonomyImageTest)
- Taxonomy term indentation (Drupal\taxonomy\Tests\TaxonomyTermIndentationTest)
- Taxonomy reference field item (Drupal\taxonomy\Tests\TaxonomyTermReferenceItemTest)
- Taxonomy term entity cache tags (Drupal\taxonomy\Tests\TermCacheTagsTest)
- Multiple vocabulary term reference field (Drupal\taxonomy\Tests\TermFieldMultipleVocabularyTest)
- Taxonomy term reference field (Drupal\taxonomy\Tests\TermFieldTest)
- Taxonomy term index (Drupal\taxonomy\Tests\TermIndexTest)
- Taxonomy term language (Drupal\taxonomy\Tests\TermLanguageTest)
- Taxonomy term functions and forms (Drupal\taxonomy\Tests\TermTest)
- Taxonomy term translation UI (Drupal\taxonomy\Tests\TermTranslationUITest)
- Taxonomy term unit tests (Drupal\taxonomy\Tests\TermUnitTest)
- Term Validation (Drupal\taxonomy\Tests\TermValidationTest)
- Taxonomy theme switching (Drupal\taxonomy\Tests\ThemeTest)
- Taxonomy token replacement (Drupal\taxonomy\Tests\TokenReplaceTest)
- Vocabulary language (Drupal\taxonomy\Tests\VocabularyLanguageTest)
- Taxonomy vocabulary permissions (Drupal\taxonomy\Tests\VocabularyPermissionsTest)
- Taxonomy vocabulary interface (Drupal\taxonomy\Tests\VocabularyTest)
- Taxonomy vocabularies (Drupal\taxonomy\Tests\VocabularyUnitTest)
TempStore
- TempStore (Drupal\user\Tests\TempStoreDatabaseTest)
Text Editor
- In-place text editor loading (Drupal\editor\Tests\EditIntegrationLoadingTest)
- In-place text editors (Edit module integration) (Drupal\editor\Tests\EditIntegrationTest)
- Text editor administration (Drupal\editor\Tests\EditorAdminTest)
- Text Editor file usage (Drupal\editor\Tests\EditorFileUsageTest)
- Text editor loading (Drupal\editor\Tests\EditorLoadingTest)
- Text editor manager (Drupal\editor\Tests\EditorManagerTest)
- Text editor security (Drupal\editor\Tests\EditorSecurityTest)
Theme
- Entity filtering theme test (Drupal\system\Tests\Theme\EntityFilteringThemeTest)
- Theme fast initialization (Drupal\system\Tests\Theme\FastTest)
- Theme functions (Drupal\system\Tests\Theme\FunctionsTest)
- 'html' and 'body' element attributes (Drupal\system\Tests\Theme\HtmlAttributesTest)
- ThemeRegistry (Drupal\system\Tests\Theme\RegistryTest)
- Theme Table (Drupal\system\Tests\Theme\TableTest)
- Early theme initialization (Drupal\system\Tests\Theme\ThemeEarlyInitializationTest)
- Theme .info.yml styles (Drupal\system\Tests\Theme\ThemeInfoStylesTest)
- Theme suggestions alter (Drupal\system\Tests\Theme\ThemeSuggestionsAlterTest)
- Theme API (Drupal\system\Tests\Theme\ThemeTest)
- PHPTemplate Engine (Drupal\system\Tests\Theme\ThemeTestPhpTemplate)
- Twig Engine (Drupal\system\Tests\Theme\ThemeTestTwig)
- Twig debug markup (Drupal\system\Tests\Theme\TwigDebugMarkupTest)
- Twig Extension (Drupal\system\Tests\Theme\TwigExtensionTest)
- Twig Filters (Drupal\system\Tests\Theme\TwigFilterTest)
- Twig Namespaces (Drupal\system\Tests\Theme\TwigNamespaceTest)
- Twig raw filter (Drupal\system\Tests\Theme\TwigRawTest)
- Twig Settings (Drupal\system\Tests\Theme\TwigSettingsTest)
- Twig Translation (Drupal\system\Tests\Theme\TwigTransTest)
Toolbar
- Toolbar admin menu (Drupal\toolbar\Tests\ToolbarAdminMenuTest)
- Toolbar hook_toolbar (Drupal\toolbar\Tests\ToolbarHookToolbarTest)
- Toolbar menu translation (Drupal\toolbar\Tests\ToolbarMenuTranslationTest)
Tour
- Tour plugin tests (Drupal\tour\Tests\TourPluginTest)
- Tour tests (Drupal\tour\Tests\TourTest)
- Views UI tour tests (Drupal\views_ui\Tests\ViewsUITourTest)
Tracker
- Tracker Node Access Tests (Drupal\tracker\Tests\TrackerNodeAccessTest)
- Tracker (Drupal\tracker\Tests\TrackerTest)
Transliteration
- Transliteration functionality (Drupal\system\Tests\Transliteration\TransliterationTest)
Typed Data API
- Entity typed data definitions (Drupal\system\Tests\Entity\EntityTypedDataDefinitionTest)
- Typed data definitions (Drupal\system\Tests\TypedData\TypedDataDefinitionTest)
- Test typed data objects (Drupal\system\Tests\TypedData\TypedDataTest)
Update
- Update functionality (Drupal\system\Tests\Update\UpdateScriptTest)
- Update contrib functionality (Drupal\update\Tests\UpdateContribTest)
- Update core functionality (Drupal\update\Tests\UpdateCoreTest)
- Upload and extract module functionality (Drupal\update\Tests\UpdateUploadTest)
Update API
- Update dependency hook invocation (Drupal\system\Tests\Update\DependencyHookInvocationTest)
- Missing update dependencies (Drupal\system\Tests\Update\DependencyMissingTest)
- Update dependency ordering (Drupal\system\Tests\Update\DependencyOrderingTest)
- Invalid update hook (Drupal\system\Tests\Update\InvalidUpdateHook)
- 7.x update hooks (Drupal\system\Tests\Update\UpdatesWith7x)
User
- User account links (Drupal\user\Tests\UserAccountLinksTests)
- User administration pages language settings (Drupal\user\Tests\UserAdminLanguageTest)
- User people listing (Drupal\user\Tests\UserAdminListingTest)
- User admin settings (Drupal\user\Tests\UserAdminSettingsFormTest)
- User administration (Drupal\user\Tests\UserAdminTest)
- User autocompletion (Drupal\user\Tests\UserAutocompleteTest)
- User blocks (Drupal\user\Tests\UserBlocksTests)
- User entity cache tags (Drupal\user\Tests\UserCacheTagsTest)
- Cancel account (Drupal\user\Tests\UserCancelTest)
- User create with failed mail function (Drupal\user\Tests\UserCreateFailMailTest)
- User create (Drupal\user\Tests\UserCreateTest)
- User delete test (Drupal\user\Tests\UserDeleteTest)
- User edited own account (Drupal\user\Tests\UserEditedOwnAccountTest)
- User edit (Drupal\user\Tests\UserEditTest)
- User entity callback tests (Drupal\user\Tests\UserEntityCallbacksTest)
- User entity tests (Drupal\user\Tests\UserEntityTest)
- User install tests (Drupal\user\Tests\UserInstallTest)
- User language creation (Drupal\user\Tests\UserLanguageCreationTest)
- User language settings (Drupal\user\Tests\UserLanguageTest)
- User login (Drupal\user\Tests\UserLoginTest)
- Reset password (Drupal\user\Tests\UserPasswordResetTest)
- Role permissions (Drupal\user\Tests\UserPermissionsTest)
- User pictures (Drupal\user\Tests\UserPictureTest)
- User registration (Drupal\user\Tests\UserRegistrationTest)
- User role administration (Drupal\user\Tests\UserRoleAdminTest)
- Role assignment (Drupal\user\Tests\UserRolesAssignmentTest)
- User save test (Drupal\user\Tests\UserSaveTest)
- User search (Drupal\user\Tests\UserSearchTest)
- User signatures (Drupal\user\Tests\UserSignatureTest)
- User time zones (Drupal\user\Tests\UserTimeZoneTest)
- User token replacement (Drupal\user\Tests\UserTokenReplaceTest)
- User translation UI (Drupal\user\Tests\UserTranslationUITest)
- User validate current pass custom form (Drupal\user\Tests\UserValidateCurrentPassCustomFormTest)
- User validation (Drupal\user\Tests\UserValidationTest)
Validation
- Entity bundle constraint (Drupal\system\Tests\Entity\BundleConstraintValidatorTest)
- Entity type constraint (Drupal\system\Tests\Entity\EntityTypeConstraintValidatorTest)
- Allowed values constraint (Drupal\system\Tests\Validation\AllowedValuesConstraintValidatorTest)
- Complex data constraint (Drupal\system\Tests\Validation\ComplexDataConstraintValidatorTest)
Views
- Basic query tests (Drupal\views\Tests\BasicTest)
- Default views (Drupal\views\Tests\DefaultViewsTest)
- Views Module tests (Drupal\views\Tests\ModuleTest)
- Plugin instantiation (Drupal\views\Tests\PluginInstanceTest)
- Groupby (Drupal\views\Tests\QueryGroupByTest)
- Search integration tests (Drupal\views\Tests\SearchIntegrationTest)
- View core token replacement (Drupal\views\Tests\TokenReplaceTest)
- View: Ajax (Drupal\views\Tests\ViewAjaxTest)
- View element (Drupal\views\Tests\ViewElementTest)
- View executable tests (Drupal\views\Tests\ViewExecutableTest)
- View render tests (Drupal\views\Tests\ViewRenderTest)
- Views hooks (Drupal\views\Tests\ViewsHooksTest)
- View taxonomy autocomplete (Drupal\views\Tests\ViewsTaxonomyAutocompleteTest)
- View template tests (Drupal\views\Tests\ViewsTemplateTest)
- Views theme integration test (Drupal\views\Tests\ViewsThemeIntegrationTest)
- View storage tests (Drupal\views\Tests\ViewStorageTest)
- Views Analyze (Drupal\views_ui\Tests\AnalyzeTest)
Views Config
- Default View - Recent Comments (Drupal\comment\Tests\Views\DefaultViewRecentComments)
- Glossary tests (Drupal\views\Tests\GlossaryTest)
Views Handlers
- Field: File extension (Drupal\file\Tests\Views\ExtensionViewsFieldTest)
- Argument: Language (Drupal\language\Tests\Views\ArgumentLanguageTest)
- Field: Language (Drupal\language\Tests\Views\FieldLanguageTest)
- Filter: Language (Drupal\language\Tests\Views\FilterLanguageTest)
- Filter: Entity bundle (Drupal\views\Tests\Entity\FilterEntityBundleTest)
- Area: Entity (Drupal\views\Tests\Handler\AreaEntityTest)
- Area: HTTP Status Code (Drupal\views\Tests\Handler\AreaHTTPStatusCodeTest)
- Area: Base (Drupal\views\Tests\Handler\AreaTest)
- Area: Text (Drupal\views\Tests\Handler\AreaTextTest)
- Area: Title (Drupal\views\Tests\Handler\AreaTitleTest)
- Area: View (Drupal\views\Tests\Handler\AreaViewTest)
- Argument: Date (Drupal\views\Tests\Handler\ArgumentDateTest)
- Argument: Null (Drupal\views\Tests\Handler\ArgumentNullTest)
- Argument: String (Drupal\views\Tests\Handler\ArgumentStringTest)
- Field: Boolean (Drupal\views\Tests\Handler\FieldBooleanTest)
- Field: Counter (Drupal\views\Tests\Handler\FieldCounterTest)
- Field: Custom (Drupal\views\Tests\Handler\FieldCustomTest)
- Field: Date (Drupal\views\Tests\Handler\FieldDateTest)
- Field: Dropbutton (Drupal\views\Tests\Handler\FieldDropButtonTest)
- Field: File size (Drupal\views\Tests\Handler\FieldFileSizeTest)
- Field: Unit Test (Drupal\views\Tests\Handler\FieldUnitTest)
- Field: URL (Drupal\views\Tests\Handler\FieldUrlTest)
- Field: Web Test (Drupal\views\Tests\Handler\FieldWebTest)
- Field: XSS (Drupal\views\Tests\Handler\FieldXssTest)
- Filter: Boolean string operator (Drupal\views\Tests\Handler\FilterBooleanOperatorStringTest)
- Filter: Boolean operator (Drupal\views\Tests\Handler\FilterBooleanOperatorTest)
- Filter: Combine (Drupal\views\Tests\Handler\FilterCombineTest)
- Filter: Date (Drupal\views\Tests\Handler\FilterDateTest)
- Filter: Equality (Drupal\views\Tests\Handler\FilterEqualityTest)
- Filter: In-operator (Drupal\views\Tests\Handler\FilterInOperatorTest)
- Filter: Numeric (Drupal\views\Tests\Handler\FilterNumericTest)
- Filter: String (Drupal\views\Tests\Handler\FilterStringTest)
- Handler alias tests (Drupal\views\Tests\Handler\HandlerAliasTest)
- Handlers: All (Drupal\views\Tests\Handler\HandlerAllTest)
- Handler: Base (Drupal\views\Tests\Handler\HandlerTest)
- Relationship: Standard (Drupal\views\Tests\Handler\RelationshipTest)
- Sort: Date (Drupal\views\Tests\Handler\SortDateTest)
- Sort: Random (Drupal\views\Tests\Handler\SortRandomTest)
- Sort: Generic (Drupal\views\Tests\Handler\SortTest)
Views module integration
- Aggregator: Integration tests (Drupal\aggregator\Tests\Views\IntegrationTest)
- Display: Block (Drupal\block\Tests\Views\DisplayBlockTest)
- Comment: User UID Argument (Drupal\comment\Tests\Views\ArgumentUserUIDTest)
- Comment: Row Plugin (Drupal\comment\Tests\Views\CommentRowTest)
- Comment: User UID Filter (Drupal\comment\Tests\Views\FilterUserUIDTest)
- Comment: Rss Row (Drupal\comment\Tests\Views\RowRssTest)
- Contact: Field views data (Drupal\contact\Tests\Views\ContactFieldsTest)
- Contact: Link Field (Drupal\contact\Tests\Views\ContactLinkTest)
- Content Translation: Views UI (Drupal\content_translation\Tests\Views\ContentTranslationViewsUITest)
- Content Translation: Link field (Drupal\content_translation\Tests\Views\TranslationLinkTest)
- Dblog Integration (Drupal\dblog\Tests\Views\ViewsIntegrationTest)
- Entity Reference: Selection handler (Drupal\entity_reference\Tests\Views\SelectionTest)
- Field: Views Data (Drupal\field\Tests\Views\ApiDataTest)
- Field: Field handler (Drupal\field\Tests\Views\HandlerFieldFieldTest)
- Forum: Views data (Drupal\forum\Tests\Views\ForumIntegrationTest)
- History Integration (Drupal\history\Tests\Views\HistoryTimestampTest)
- Node: Bulk form (Drupal\node\Tests\Views\BulkFormTest)
- Node: Node Type field (Drupal\node\Tests\Views\FieldTypeTest)
- Node: User has revision Filter (Drupal\node\Tests\Views\FilterUidRevisionTest)
- Node: Frontpage view (Drupal\node\Tests\Views\FrontPageTest)
- Node: contextual links (Drupal\node\Tests\Views\NodeContextualLinksTest)
- Node: Views data (Drupal\node\Tests\Views\NodeIntegrationTest)
- Node: Revision integration (Drupal\node\Tests\Views\RevisionRelationships)
- Node: Row plugin (Drupal\node\Tests\Views\RowPluginTest)
- Node: Status extra filter (Drupal\node\Tests\Views\StatusExtraTest)
- Statistics: Integration tests (Drupal\statistics\Tests\Views\IntegrationTest)
- Taxonomy: Node term data Relationship (Drupal\taxonomy\Tests\Views\RelationshipNodeTermDataTest)
- Taxonomy: Representative Node Relationship (Drupal\taxonomy\Tests\Views\RelationshipRepresentativeNode)
- Taxonomy: node index Filter (UI) (Drupal\taxonomy\Tests\Views\TaxonomyIndexTidUiTest)
- Tracker: User UID tests (Drupal\tracker\Tests\Views\TrackerUserUidTest)
- User: Access permission (Drupal\user\Tests\Views\AccessPermissionTest)
- User: Access role (Drupal\user\Tests\Views\AccessRoleTest)
- User: Access role (UI) (Drupal\user\Tests\Views\AccessRoleUITest)
- User: Argument default (Drupal\user\Tests\Views\ArgumentDefaultTest)
- User: Argument validators (Drupal\user\Tests\Views\ArgumentValidateTest)
- User: Bulk form (Drupal\user\Tests\Views\BulkFormTest)
- User: Uid Argument (Drupal\user\Tests\Views\HandlerArgumentUserUidTest)
- User: Permissions Field (Drupal\user\Tests\Views\HandlerFieldPermissionTest)
- User: Role Field (Drupal\user\Tests\Views\HandlerFieldRoleTest)
- User: Name Field (Drupal\user\Tests\Views\HandlerFieldUserNameTest)
- User: Permissions Filter (Drupal\user\Tests\Views\HandlerFilterPermissionTest)
- User: Name Filter (Drupal\user\Tests\Views\HandlerFilterUserNameTest)
- User: Representative Node Relationship (Drupal\user\Tests\Views\RelationshipRepresentativeNode)
- User data: Field (Drupal\user\Tests\Views\UserDataTest)
- Field: Entity Api Integration (Drupal\views\Tests\Entity\FieldEntityTest)
- Entity: renderers (Drupal\views\Tests\Entity\RowEntityRenderersTest)
- View dependencies test (Drupal\views\Tests\Entity\ViewEntityDependenciesTest)
Views Plugins
- Style: Serializer plugin (Drupal\rest\Tests\Views\StyleSerializerTest)
- Access (Drupal\views\Tests\Plugin\AccessTest)
- Argument default (Drupal\views\Tests\Plugin\ArgumentDefaultTest)
- Argument validator (Drupal\views\Tests\Plugin\ArgumentValidatorTest)
- Cache tag (Drupal\views\Tests\Plugin\CacheTagTest)
- Cache (Drupal\views\Tests\Plugin\CacheTest)
- Display: Attachment plugin (Drupal\views\Tests\Plugin\DisplayAttachmentTest)
- Display extender (Drupal\views\Tests\Plugin\DisplayExtenderTest)
- Display: Feed plugin (Drupal\views\Tests\Plugin\DisplayFeedTest)
- Display: Page plugin (Drupal\views\Tests\Plugin\DisplayPageTest)
- Display: Page plugin (web) (Drupal\views\Tests\Plugin\DisplayPageWebTest)
- Display (Drupal\views\Tests\Plugin\DisplayTest)
- Display unit tests (Drupal\views\Tests\Plugin\DisplayUnitTest)
- Exposed forms (Drupal\views\Tests\Plugin\ExposedFormTest)
- Filter: General (Drupal\views\Tests\Plugin\FilterTest)
- Join (Drupal\views\Tests\Plugin\JoinTest)
- Pager: Mini (Drupal\views\Tests\Plugin\MiniPagerTest)