str.php 267 B

123456789101112131415
  1. <?php
  2. class StrTest extends PHPUnit_Framework_TestCase {
  3. /**
  4. * Test the Str::encoding method.
  5. *
  6. * @group laravel
  7. */
  8. public function testEncodingShouldReturnApplicationEncoding()
  9. {
  10. $this->assertEquals('UTF-8', Config::get('application.encoding'));
  11. }
  12. }