mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 15:05:42 +00:00
37 lines
504 B
PHP
37 lines
504 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Tests covering the form editor / builder and
|
||
|
* some of the user interface
|
||
|
*
|
||
|
* @package userforms
|
||
|
*/
|
||
|
|
||
|
class FieldEditorTest extends FunctionalTest {
|
||
|
|
||
|
static $fixture_file = 'userforms/tests/UserDefinedFormTest.yml';
|
||
|
|
||
|
function testPerformReadonlyTransformation() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function testSaveInto() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function testAddField() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function testAddOptionField() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function testCreatableFields() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class FieldEditorTest_Controller extends Controller {
|
||
|
|
||
|
}
|