Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
group_context_domain
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
group_context_domain
Merge requests
!3
Resolve
#3448583
"Add tests for"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
#3448583
"Add tests for"
issue/group_context_domain-3448583:3448583-add-tests-for
into
1.0.x
Overview
0
Commits
3
Pipelines
3
Changes
5
Merged
Kristiaan Van den Eynde
requested to merge
issue/group_context_domain-3448583:3448583-add-tests-for
into
1.0.x
1 year ago
Overview
0
Commits
3
Pipelines
3
Changes
5
Expand
Closes
#3448583
0
0
Merge request reports
Compare
1.0.x
version 2
09cbd903
1 year ago
version 1
f195bfd8
1 year ago
1.0.x (base)
and
latest version
latest version
09cbd903
3 commits,
1 year ago
version 2
09cbd903
3 commits,
1 year ago
version 1
f195bfd8
2 commits,
1 year ago
5 files
+
168
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
tests/src/Functional/GroupContextDomainBrowserTestBase.php
0 → 100644
+
25
−
0
Options
<?php
namespace
Drupal\Tests\group_context_domain\Functional
;
use
Drupal\Tests\group\Functional\GroupBrowserTestBase
;
use
Drupal\Tests\group_context_domain
\Traits\GroupContextDomainTestTrait
;
/**
* Provides a base class for Group Context: Domain functional tests.
*/
abstract
class
GroupContextDomainBrowserTestBase
extends
GroupBrowserTestBase
{
use
GroupContextDomainTestTrait
;
/**
* {@inheritdoc}
*/
protected
static
$modules
=
[
'domain'
,
'group_context_domain'
];
/**
* {@inheritdoc}
*/
protected
$defaultTheme
=
'stark'
;
}
Loading