-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Robin Appelman <[email protected]>
- Loading branch information
1 parent
b3fbc98
commit fb33134
Showing
4 changed files
with
17 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
- SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
<phpunit bootstrap="bootstrap.php" | ||
timeoutForSmallTests="900" | ||
timeoutForMediumTests="900" | ||
timeoutForLargeTests="900" | ||
convertDeprecationsToExceptions="true" | ||
> | ||
<testsuite name='Nextcloud - Notify Push App Tests'> | ||
<directory suffix='.php'>.</directory> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
bootstrap="bootstrap.php" | ||
verbose="true" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"> | ||
<testsuite name="unit"> | ||
<directory suffix="Test.php">./</directory> | ||
</testsuite> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">../</directory> | ||
<exclude> | ||
<directory suffix=".php">../tests | ||
</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./tests/lib</directory> | ||
</include> | ||
</coverage> | ||
</phpunit> |