mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
21 lines
493 B
YAML
21 lines
493 B
YAML
issueNumber: MDL-66903
|
|
notes:
|
|
core:
|
|
- message: >
|
|
Added the ability for unit tests to autoload classes in the
|
|
`\[component]\tests\`
|
|
|
|
namespace from the `[path/to/component]/tests/classes` directory.
|
|
type: improved
|
|
- message: >
|
|
Added a helper to load fixtures from a components `tests/fixtures/`
|
|
folder:
|
|
|
|
|
|
```php
|
|
|
|
advanced_testcase::load_fixture(string $component, string $fixture): void;
|
|
|
|
```
|
|
type: improved
|