added foundation of testing setup.
This commit is contained in:
0
tests/cases/application/.gitignore
vendored
Normal file
0
tests/cases/application/.gitignore
vendored
Normal file
0
tests/cases/bundles/.gitignore
vendored
Normal file
0
tests/cases/bundles/.gitignore
vendored
Normal file
15
tests/cases/laravel/str.php
Normal file
15
tests/cases/laravel/str.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
class StrTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
/**
|
||||
* Test the Str::encoding method.
|
||||
*
|
||||
* @group laravel
|
||||
*/
|
||||
public function testEncodingShouldReturnApplicationEncoding()
|
||||
{
|
||||
$this->assertEquals('UTF-8', Config::get('application.encoding'));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user