for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\CMS\Tests\Model;
use SilverStripe\Dev\TestOnly;
use SilverStripe\CMS\Controllers\ContentController;
class VirtualPageTest_ClassAController extends ContentController implements TestOnly
{
private static $allowed_actions = [
$allowed_actions
'testaction',
];
public function testMethod()
return 'hello';
}