Completed
Push — 8.x-1.x ( 42c2bb...b21ea1 )
by Janez
04:16 queued 01:35
created

EntityBrowserExampleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExampleInstall() 0 3 1
1
<?php
2
3
namespace Drupal\Tests\entity_browser_example\FunctionalJavascript;
4
5
use Drupal\Tests\BrowserTestBase;
6
7
/**
8
 * Tests the Entity browser example module.
9
 *
10
 * @group entity_browser
11
 */
12
class EntityBrowserExampleTest extends BrowserTestBase {
13
14
  /**
15
   * Modules to enable.
16
   *
17
   * @var array
18
   */
19
  public static $modules = ['entity_browser_example'];
20
21
  /**
22
   * Tests Entity Browser example module.
23
   */
24
  public function testExampleInstall() {
25
    // If we came this far example module installed successfully.
26
  }
27
28
}
29