Skip to content

Instantly share code, notes, and snippets.

View dlondero's full-sized avatar

Daniel Londero dlondero

View GitHub Profile
@dlondero
dlondero / code_review_tools.txt
Last active August 29, 2015 14:24
Code review tools research
Reaserch the tools that can really help during code reviews or at least take over on some things that can be automated leaving to the reviewer the opportunity to focus on high level topics.
Atlassian Crucible
https://www.atlassian.com/software/crucible/overview
Nothing more than what we’re used with GitHub. Of course Jira integration available. Interesting ‘Review coverage’ to easily see what parts of your codebase haven't had enough eyes scanning them for a sanity check.
Look and feel: ugly as almost all other Atlassian’s tools.
Review Board
https://www.reviewboard.org/
<?php
namespace Acme\DemoBundle\Tests\Command;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Acme\DemoBundle\Command\EmailCommand;
class EmailCommandTest extends WebTestCase