for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\Forms\Tests\FormRequestHandlerTest;
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Forms\Form;
class TestForm extends Form
{
public function mySubmitOnForm()
return new HTTPResponse('success', 200);
}