DddTest.php 289 B

1234567891011121314
  1. <?php
  2. namespace Facade\Ignition\Tests;
  3. class DddTest extends TestCase
  4. {
  5. /** @test */
  6. public function using_ddd_without_an_argument_will_throw_its_own_exception()
  7. {
  8. $this->expectExceptionMessage('You should pass at least 1 argument to `ddd`');
  9. ddd();
  10. }
  11. }