mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* tests: Tests for errors in mib files * Some additional mib test * Use groups to exclude mib tests from the default test run * Enable per-mib tests too * Refactor tests for easy filtering with @dir or @file (relative to mib_dir)
14 lines
350 B
XML
14 lines
350 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit colors="true" bootstrap="tests/bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="Application Test Suite">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<groups>
|
|
<exclude>
|
|
<group>mibs</group>
|
|
</exclude>
|
|
</groups>
|
|
</phpunit>
|