for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ionut\Sylar\Tests\Unit\Integrations;
use Ionut\Sylar\Integrations\Standalone;
use Ionut\Sylar\Reactor;
use Ionut\Sylar\Tests\TestCase;
class StandaloneTest extends TestCase
{
public function testShouldCreateReactorSuccessfully()
$standalone = new Standalone(tempnam('/tmp', 'tmpfile'));
$this->assertInstanceOf(
Reactor::class,
$standalone->getReactor()
);
}
public function testShouldRunWithoutExceptions()
$standalone->run();