ImportProductMsiTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testDummy() 0 3 1
1
<?php
2
3
/**
4
 * PHP version 7
5
 *
6
 * @author    MET <[email protected]>
7
 * @copyright 2022 TechDivision GmbH <[email protected]>
8
 * @license   https://opensource.org/licenses/MIT
9
 * @link      https://github.com/techdivision/import-ee
10
 * @link      http://www.techdivision.com
11
 */
12
13
namespace TechDivision\Import\Product\Msi\Observer;
14
15
use PHPUnit\Framework\TestCase;
16
17
/**
18
 * Dummy Test for workflow
19
 *
20
 * @author    MET <[email protected]>
21
 * @copyright 2022 TechDivision GmbH <[email protected]>
22
 * @license   https://opensource.org/licenses/MIT
23
 * @link      https://github.com/techdivision/import-ee
24
 * @link      http://www.techdivision.com
25
 */
26
class ImportProductMsiTest extends TestCase
27
{
28
29
    /**
30
     * Dummy test implementation.
31
     *
32
     * @return void
33
     */
34
    public function testDummy()
35
    {
36
        $this->markTestSkipped('Still to implement');
37
    }
38
}
39