for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleSAML\Module\monitor;
/**
* Tests for DependencyInjection
*/
class DependencyInjectionTest extends \PHPUnit\Framework\TestCase
{
public function testIO()
$variables = [
'test' => 'test',
];
$di = new DependencyInjection($variables);
assertEquals($di->get('test'), 'test');
}