| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class ExampleUnitTest extends Unit |
||
| 27 | { |
||
| 28 | // Properties |
||
| 29 | // ========================================================================= |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var UnitTester |
||
| 33 | */ |
||
| 34 | protected $tester; |
||
| 35 | |||
| 36 | // Public methods |
||
| 37 | // ========================================================================= |
||
| 38 | |||
| 39 | // Tests |
||
| 40 | // ========================================================================= |
||
| 41 | |||
| 42 | /** |
||
| 43 | * |
||
| 44 | */ |
||
| 45 | public function testPluginInstance() |
||
| 46 | { |
||
| 47 | $this->assertInstanceOf( |
||
| 48 | Seomatic::class, |
||
| 49 | Seomatic::$plugin |
||
| 50 | ); |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * |
||
| 55 | */ |
||
| 56 | public function testCraftEdition() |
||
| 63 | ); |
||
| 64 | } |
||
| 66 |