Skip to content

Commit fea0788

Browse files
committed
add dummy unit test
1 parent 22d62af commit fea0788

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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\Configuration\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 ImportConfigurationTest 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+
}

0 commit comments

Comments
 (0)