SolutionTest.php 373 B

123456789101112131415161718
  1. <?php
  2. namespace Facade\IgnitionContracts\Tests;
  3. use Facade\IgnitionContracts\BaseSolution;
  4. use PHPUnit\Framework\TestCase;
  5. class SolutionTest extends TestCase
  6. {
  7. /** @test */
  8. public function it_can_instanciate_a_base_solution()
  9. {
  10. $solution = BaseSolution::create('my title');
  11. $this->assertInstanceOf(BaseSolution::class, $solution);
  12. }
  13. }