mirror of
https://github.com/silverstripe/silverstripe-widgets
synced 2024-10-22 17:05:54 +02:00
20 lines
361 B
PHP
20 lines
361 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Widgets\Tests\WidgetControllerTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Widgets\Model\Widget;
|
|
|
|
/**
|
|
* @package widgets
|
|
* @subpackage tests
|
|
*/
|
|
class TestWidget extends Widget implements TestOnly
|
|
{
|
|
private static $table_name = 'TestWidgetB';
|
|
|
|
private static $db = array(
|
|
'TestValue' => 'Text'
|
|
);
|
|
}
|