Upgraded to PSR-4 autoloading

This commit is contained in:
Ben Ramsey
2014-02-21 18:35:01 -06:00
parent 8569983a11
commit c43be02bd9
22 changed files with 4 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Rhumsaa\Uuid\Console;
class ApplicationTest extends TestCase
{
/**
* @covers Rhumsaa\Uuid\Console\Application::__construct
*/
public function testConstructor()
{
$app = new Application();
// Reset the error handler, since the constructor sets it
restore_error_handler();
$this->assertInstanceOf('Rhumsaa\\Uuid\\Console\\Application', $app);
$this->assertEquals('uuid', $app->getName());
$this->assertEquals(\Rhumsaa\Uuid\Uuid::VERSION, $app->getVersion());
}
}