12 lines
185 B
PHP
12 lines
185 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\EndToEnd\Form;
|
||
|
|
||
|
use Tests\EndToEndTestCase;
|
||
|
use Tests\Lib\CreatesFormFields;
|
||
|
|
||
|
abstract class FormTestCase extends EndToEndTestCase
|
||
|
{
|
||
|
use CreatesFormFields;
|
||
|
}
|