Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SolutionTest.php 373B

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. }