| 1 | <?php |
||
| 13 | class StringTest extends DriverFieldKernelTestBase |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Machine name of the field type being tested. |
||
| 18 | * |
||
| 19 | * @string |
||
| 20 | */ |
||
| 21 | protected $fieldType = 'string'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Test that an entity can be created with a single value in a string field. |
||
| 25 | */ |
||
| 26 | public function testStringSingle() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Test that an entity can be created with multiple values in a string field. |
||
| 34 | */ |
||
| 35 | public function testStringMultiple() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Test that an entity can be created with a single value in a string field. |
||
| 43 | */ |
||
| 44 | public function testStringOnBundleField() |
||
| 57 | } |
||
| 58 |