public function testRunProcesses()
 {
     $files = ['task3', 'task4', 'task5', 'task6', 'task7', 'task8', 'task9', 'task10', 'task11'];
     foreach ($files as $f) {
         if (file_exists("/tmp/{$f}")) {
             unlink("/tmp/{$f}");
         }
     }
     $time = mktime(19, 40, 0, 5, 19, 2015);
     $this->_controller->actionIndex('0', $time, 1);
     $this->assertTrue(file_exists('/tmp/task3'));
     $this->assertTrue(file_exists('/tmp/task4'));
     $this->assertTrue(file_exists('/tmp/task5') === false);
     $this->assertTrue(file_exists('/tmp/task6') === false);
     $this->assertTrue(file_exists('/tmp/task7'));
     $this->assertTrue(file_exists('/tmp/task8'));
     $this->assertTrue(file_exists('/tmp/task9'));
     $this->assertTrue(file_exists('/tmp/task10'));
     $this->assertTrue(file_exists('/tmp/task11'));
 }