| 1 | <?php |
||
| 3 | class DMSDocumentCartSubmissionItemTest extends SapphireTest |
||
|
|
|||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Test that the default parent "submission" ID field is gone |
||
| 7 | */ |
||
| 8 | public function testNoParentIdField() |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The "original ID" field points to the initial ID of the document that was ordered at the time it was placed. |
||
| 16 | * This can easily change, so test that we have a helptip to say this. It should also be read only. |
||
| 17 | */ |
||
| 18 | public function testOriginalIdFieldHasHelptipAndIsReadonly() |
||
| 24 | } |
||
| 25 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.