LoggingIntegrationTest.php 338 B

12345678910111213141516
  1. <?php
  2. namespace Illuminate\Tests\Integration\Log;
  3. use Illuminate\Support\Facades\Log;
  4. use Orchestra\Testbench\TestCase;
  5. class LoggingIntegrationTest extends TestCase
  6. {
  7. public function testLoggingCanBeRunWithoutEncounteringExceptions()
  8. {
  9. $this->expectNotToPerformAssertions();
  10. Log::info('Hello World');
  11. }
  12. }