| Total Complexity | 1 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | class ValidateDataObjectTest extends SapphireTest | ||
| 14 | { | ||
| 15 | /** | ||
| 16 | * @var string | ||
| 17 | */ | ||
| 18 | protected static $fixture_file = 'validation.yml'; | ||
| 19 | |||
| 20 | /** | ||
| 21 | * @var string[] | ||
| 22 | */ | ||
| 23 | protected static $extra_dataobjects = [ | ||
| 24 | Customer::class | ||
| 25 | ]; | ||
| 26 | |||
| 27 | /** | ||
| 28 | * @throws ValidationException | ||
| 29 | */ | ||
| 30 | public function testValidateDataObject() | ||
| 45 |