feat: add Installation Test Action (#1)

This commit is contained in:
Damien Retzinger
2022-06-25 12:14:49 -04:00
committed by GitHub
parent a6400eb9ec
commit 4bc0854cfc
9 changed files with 246 additions and 0 deletions
@@ -0,0 +1,12 @@
<?php
namespace Graycore\DemoPackage\Test\Integration;
class TestItWorks extends \PHPUnit\Framework\TestCase
{
public function testItWorks()
{
$this->assertEquals(true, true);
}
}
@@ -0,0 +1,12 @@
<?php
namespace Graycore\DemoPackage\Test\Unit;
class TestItWorks extends \PHPUnit\Framework\TestCase
{
public function testItWorks()
{
$this->assertEquals(true, true);
}
}