for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoS\SMSBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class RecordControllerTest extends WebTestCase
{
public function testSend()
$client = static::createClient();
$crawler = $client->request('GET', '/sms/send');
$this->assertTrue($crawler->filter('html:contains("Hello World")')->count() > 0);
}