Passed
Push — master ( 868536...4e8014 )
by
unknown
08:27 queued 05:28
created

ImportProductMsiTest::testDummy()   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
/**
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