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

EntityBrowserExampleTest::testExampleInstall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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